Files
nixos/home/home.nix
T
2022-04-20 03:10:08 +00:00

14 lines
195 B
Nix

name: { pkgs, lib, ...}:
{
imports = [
./bash.nix
./git.nix
./vim.nix
./ssh.nix
];
home.username = name;
home.homeDirectory = if name == "root" then "/root" else "/home/${name}";
}