16 lines
211 B
Nix
16 lines
211 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../shared-configuration.nix
|
|
];
|
|
|
|
set-user.users = [
|
|
{
|
|
username = "guz";
|
|
shell = pkgs.zsh;
|
|
home = import ./home.nix;
|
|
}
|
|
];
|
|
}
|