From 16af6301cc4380ec32ef6f953031c5e59ea0e4aa Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Fri, 5 Jul 2024 02:06:27 +0530 Subject: [PATCH] flake: move module def out of flake-utils scope --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d370008..3bb1c67 100644 --- a/flake.nix +++ b/flake.nix @@ -60,6 +60,7 @@ }; in { + nixosModules.default = import ./modules; nixosConfigurations = { Skipper = let @@ -263,7 +264,6 @@ deploy-rs.packages.${pkgs.system}.default ]; }; - nixosModules.default = ./modules; packages.getpaper = pkgs.callPackage ./extra-packages/scripts/getpaper { }; } );