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