this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add `setsuna`

+34
+15
hosts/setsuna/default.nix
··· 1 + {delib, ...}: 2 + delib.host { 3 + name = "setsuna"; 4 + 5 + myconfig._1password.enable = false; 6 + myconfig.gaming.enable = false; 7 + myconfig.tray.enable = false; 8 + myconfig.virtualisation.enable = false; 9 + 10 + myconfig.programs.chromium.enable = false; 11 + myconfig.programs.desktop-apps.enable = false; 12 + myconfig.programs.espanso.enable = false; 13 + myconfig.programs.kitty.enable = false; 14 + myconfig.programs.syncthing.enable = false; 15 + }
+19
hosts/setsuna/hardware.nix
··· 1 + { 2 + delib, 3 + inputs, 4 + ... 5 + }: 6 + delib.host { 7 + name = "setsuna"; 8 + 9 + homeManagerSystem = "aarch64-darwin"; 10 + home.home.stateVersion = "26.05"; 11 + 12 + darwin = { 13 + nixpkgs.hostPlatform = "aarch64-darwin"; 14 + # TODO: `darwin-rebuild changelog` to see what changed, latest is 6 15 + system.stateVersion = 6; 16 + # TODO: see what this does, i forgor 17 + system.configurationRevision = inputs.self.rev or inputs.self.dirtyRev or null; 18 + }; 19 + }