Files
nixos/home/home.nix
T

15 lines
228 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}";
home.packages = lib.mkForce [];
}