From a410a402a5dc5c68208ab8d6610fade60c8639c0 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 9 Jan 2025 14:49:49 -0800 Subject: use disko instead of rolling my own scripts and fixes --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 5595eb0..8ac9000 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ ({pkgs, modulesPath, ...}: { imports = [(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")]; }) - ./iso.nix + ./live/iso.nix ]; }; @@ -54,16 +54,16 @@ imports = [ ]; }) lanzaboote.nixosModules.lanzaboote - ./configuration.nix + ./desktop/configuration.nix disko.nixosModules.disko - ./disk-config.nix + ./sda/disk-config.nix home-manager.nixosModules.home-manager { home-manager = { useGlobalPkgs = true; extraSpecialArgs = attrs; useUserPackages = true; - users.preston = import ./home.nix; + users.preston = import ./desktop/home.nix; }; } ]; -- cgit