diff --git a/flake.nix b/flake.nix index 99933ae..b14ed45 100644 --- a/flake.nix +++ b/flake.nix @@ -63,7 +63,6 @@ }; outputs = inputs @ { self, nixpkgs, nixpkgs-unstable, nixos-hardware, home-manager, home-manager-unstable, nur, agenix, jovian-nixos, microvm, impermanence, lanzaboote, nixvim, ... }: # Function that tells my flake which to use and what do what to do with the dependencies. - rec { let # Variables that can be used in the config files user = "kabbone"; userdmz = "diablo"; @@ -71,10 +70,6 @@ location = "$HOME/.setup"; in # Use above variables in ... { - hydraJobs = { - steamdeck = nixosConfigurations.steamdeck.config.system.build.toplevel; - }; - nixosConfigurations = ( # NixOS configurations import ./hosts { # Imports ./hosts/default.nix inherit (nixpkgs) lib; @@ -83,6 +78,9 @@ security.sudo.execWheelOnly = true; } ); - }; + hydraJobs = { + steamdeck = nixosConfigurations.steamdeck.config.system.build.toplevel; + }; + }; }