18 lines
253 B
Nix
Raw Normal View History

{
2024-04-10 18:15:58 -04:00
imports = [
2024-04-14 22:23:37 -04:00
./home/programs.nix
./home/sshconfig.nix
2024-04-17 18:50:59 -04:00
./home/cli
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-19 19:28:36 -04:00
nixpkgs.config.allowUnfree = true;
2024-04-11 20:19:29 -04:00
home = {
username = "richie";
homeDirectory = "/home/richie";
};
home.stateVersion = "23.11";
}