18 lines
320 B
Nix
Raw Normal View History

2024-05-21 21:06:57 -04:00
{ lib, machineConfig, ... }:
{
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-06-09 10:45:52 -04:00
] ++ lib.optionals (!machineConfig.server) [ ./home/gui ];
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";
}