btw i use nix
1{
2 pkgs,
3 config,
4 lib,
5 ...
6}:
7
8{
9 imports = [ ./hardware-configuration.nix ];
10
11 custom = {
12 enable = true;
13 autoUpgrade.enable = true;
14 homeManager.enable = true;
15 useNixCache = false;
16 };
17
18 home-manager.users.${config.custom.username}.config.custom.machineColour = "green";
19
20 services.openssh.openFirewall = true;
21}