23 lines
317 B
Nix
Raw Normal View History

{
2024-04-10 18:15:58 -04:00
imports = [
./home/git.nix
2024-04-14 22:23:37 -04:00
./home/programs.nix
./home/sshconfig.nix
2024-04-11 20:19:29 -04:00
./home/vscode
2024-04-10 18:15:58 -04:00
];
2024-04-10 17:16:42 -04:00
2024-04-11 20:19:29 -04:00
nixpkgs = {
config = {
allowUnfree = true;
};
};
programs.zsh.enable = true;
home = {
username = "richie";
homeDirectory = "/home/richie";
};
home.stateVersion = "23.11";
}