From 1a3486d77574c06b395ab6cda41084f5ed24a3f4 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 16 Jan 2025 02:11:26 -0800 Subject: modularized nix configuration; builds correctly --- nix/flake.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'nix/flake.nix') diff --git a/nix/flake.nix b/nix/flake.nix index 555a8c1..787b3a7 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -38,7 +38,7 @@ imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ]; } ) - ./systems/installer/iso.nix + ./systems/installer/default.nix ]; }; @@ -46,15 +46,14 @@ system = "x86_64-linux"; specialArgs = attrs; modules = [ - { nixpkgs.overlays = [ nur.overlays.default ]; } - { home-manager.extraSpecialArgs = attrs; } lanzaboote.nixosModules.lanzaboote disko.nixosModules.disko home-manager.nixosModules.home-manager sops-nix.nixosModules.sops - ./systems/desktop/configuration.nix - ./systems/desktop/sda-simple.nix - ./systems/desktop/home.nix + { nixpkgs.overlays = [ nur.overlays.default ]; } + { home-manager.extraSpecialArgs = attrs; } + + ./systems/continuity/default.nix ]; }; -- cgit