Files
nixos/home/home.nix
T

14 lines
195 B
Nix
Raw Normal View History

2022-04-19 19:04:17 +00:00
name: { pkgs, lib, ...}:
2022-04-18 11:38:06 -05:00
{
imports = [
./bash.nix
./git.nix
./vim.nix
2022-04-18 14:01:00 -05:00
./ssh.nix
2022-04-18 11:38:06 -05:00
];
home.username = name;
home.homeDirectory = if name == "root" then "/root" else "/home/${name}";
}