24 lines
391 B
Nix
24 lines
391 B
Nix
name: { pkgs, lib, nixosConfig, ...}:
|
|
|
|
let
|
|
guiImports = if nixosConfig.greg.gnome.enable then
|
|
[ ./gui ] else [];
|
|
|
|
in {
|
|
imports = [
|
|
./modules
|
|
./ansible.nix
|
|
./bash.nix
|
|
./direnv.nix
|
|
./git.nix
|
|
./ssh.nix
|
|
./vim.nix
|
|
./xonsh.nix
|
|
] ++ guiImports;
|
|
|
|
|
|
home.username = name;
|
|
home.homeDirectory = if name == "root" then "/root" else "/home/${name}";
|
|
home.stateVersion = "21.11";
|
|
}
|