From 93bec1fbfc8fbb16d1471e4c050f8d5020ead8ca Mon Sep 17 00:00:00 2001 From: Ashlynne Mitchell Date: Tue, 16 Dec 2025 15:47:31 +1100 Subject: [PATCH] feat: add `setsuna` --- hosts/setsuna/default.nix | 15 +++++++++++++++ hosts/setsuna/hardware.nix | 19 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 hosts/setsuna/default.nix create mode 100644 hosts/setsuna/hardware.nix diff --git a/hosts/setsuna/default.nix b/hosts/setsuna/default.nix new file mode 100644 index 0000000..80184e7 --- /dev/null +++ b/hosts/setsuna/default.nix @@ -0,0 +1,15 @@ +{delib, ...}: +delib.host { + name = "setsuna"; + + myconfig._1password.enable = false; + myconfig.gaming.enable = false; + myconfig.tray.enable = false; + myconfig.virtualisation.enable = false; + + myconfig.programs.chromium.enable = false; + myconfig.programs.desktop-apps.enable = false; + myconfig.programs.espanso.enable = false; + myconfig.programs.kitty.enable = false; + myconfig.programs.syncthing.enable = false; +} diff --git a/hosts/setsuna/hardware.nix b/hosts/setsuna/hardware.nix new file mode 100644 index 0000000..8878c86 --- /dev/null +++ b/hosts/setsuna/hardware.nix @@ -0,0 +1,19 @@ +{ + delib, + inputs, + ... +}: +delib.host { + name = "setsuna"; + + homeManagerSystem = "aarch64-darwin"; + home.home.stateVersion = "26.05"; + + darwin = { + nixpkgs.hostPlatform = "aarch64-darwin"; + # TODO: `darwin-rebuild changelog` to see what changed, latest is 6 + system.stateVersion = 6; + # TODO: see what this does, i forgor + system.configurationRevision = inputs.self.rev or inputs.self.dirtyRev or null; + }; +} -- 2.51.2