diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2025-02-03 17:08:07 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2025-02-03 17:08:07 -0700 |
| commit | dbb0b0d9758d6063f9272fae1281d2280b3d90e1 (patch) | |
| tree | ee737f86ac7593746e21e613c1908b49e944eb59 /flake.nix | |
| parent | 2f1c08144090d9d644a2f34244f2b042b467aeee (diff) | |
fixing up old code
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -206,8 +206,6 @@ nixosConfigurations = { live = nixpkgs.lib.nixosSystem { - system = "aarch64-linux"; - modules = [ (nixpkgs + "/nixos/modules/installer/sd-card/sd-image-aarch64-installer.nix") ./machines/iso/configuration.nix @@ -220,17 +218,17 @@ home-manager.users.defin = import ./home-manager/default.nix; home-manager.extraSpecialArgs = { inherit inputs; }; } + { nixpkgs.hostPlatform = "aarch64-linux"; } ]; }; livetest = nixpkgs.lib.nixosSystem { - system = "aarch64-linux"; modules = [ (nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix") + { nixpkgs.hostPlatform = "aarch64-linux"; } ]; }; zenbook = nixpkgs.lib.nixosSystem { - # inherit system; specialArgs = { inherit inputs; }; modules = [ ./machines/zenbook/configuration.nix |
