Nix configurations for my personal machines (Linux & macOS)
at main 432 B view raw
1{ 2 delib, 3 inputs, 4 ... 5}: 6delib.host { 7 name = "shimmer"; 8 9 homeManagerSystem = "aarch64-darwin"; 10 home.home.stateVersion = "24.05"; 11 12 darwin = { 13 nixpkgs.hostPlatform = "aarch64-darwin"; 14 # TODO: `darwin-rebuild changelog` to see what changed, latest is 6 15 system.stateVersion = 4; 16 # TODO: see what this does, i forgor 17 system.configurationRevision = inputs.self.rev or inputs.self.dirtyRev or null; 18 }; 19}