diff options
| author | Fuwn <[email protected]> | 2025-05-25 02:51:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-25 02:51:06 -0700 |
| commit | 1bf66ae55bc982a89b706fbc1e5abdfc55acc2a8 (patch) | |
| tree | 92fd4af8024c5587ca67c7d5cc2939955fde697c /hosts | |
| parent | Nara: Use unstable nixpkgs (diff) | |
| download | nixos-config-1bf66ae55bc982a89b706fbc1e5abdfc55acc2a8.tar.xz nixos-config-1bf66ae55bc982a89b706fbc1e5abdfc55acc2a8.zip | |
Nara: Upgrade Determinate and nix-darwin
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/nara/configuration.nix | 5 | ||||
| -rw-r--r-- | hosts/nara/default.nix | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/hosts/nara/configuration.nix b/hosts/nara/configuration.nix index 1517f20..dde8e8d 100644 --- a/hosts/nara/configuration.nix +++ b/hosts/nara/configuration.nix @@ -5,5 +5,8 @@ "${self}/modules/mac" ]; - system.stateVersion = 5; + system = { + stateVersion = 5; + primaryUser = "ebisu"; + }; } diff --git a/hosts/nara/default.nix b/hosts/nara/default.nix index b2cd9d2..8015eca 100644 --- a/hosts/nara/default.nix +++ b/hosts/nara/default.nix @@ -4,7 +4,10 @@ self, }: let - pkgs = (kansaiPkgs { })."aarch64-darwin"; + pkgs = + (kansaiPkgs { + nixpkgsIsDarwin = true; + })."aarch64-darwin"; in { flake.darwinConfigurations.nara = inputs.nix-darwin.lib.darwinSystem { @@ -12,7 +15,6 @@ in modules = with inputs; [ ./configuration.nix - determinate.darwinModules.default nix-homebrew.darwinModules.nix-homebrew home-manager.darwinModules.home-manager sops-nix.darwinModules.sops |