diff --git a/modules/hosts/alpha/home.nix b/modules/hosts/alpha/home.nix index c306937..eab1bd2 100644 --- a/modules/hosts/alpha/home.nix +++ b/modules/hosts/alpha/home.nix @@ -1,4 +1,3 @@ -{ ... }: { flake.modules.homeManager.alpha = { home.stateVersion = "26.05"; diff --git a/modules/hosts/arcturus/home.nix b/modules/hosts/arcturus/home.nix index 9bb799b..d413830 100644 --- a/modules/hosts/arcturus/home.nix +++ b/modules/hosts/arcturus/home.nix @@ -1,4 +1,3 @@ -{ ... }: { flake.modules.homeManager.arcturus = { home.stateVersion = "26.05"; diff --git a/modules/hosts/default.nix b/modules/hosts/default.nix index 05efcf6..127c9c2 100644 --- a/modules/hosts/default.nix +++ b/modules/hosts/default.nix @@ -117,11 +117,9 @@ in }; }; - perSystem = - { ... }: - { - checks = builtins.mapAttrs ( - _: config: config.config.system.build.toplevel - ) self.nixosConfigurations; - }; + perSystem = { + checks = builtins.mapAttrs ( + _: config: config.config.system.build.toplevel + ) self.nixosConfigurations; + }; } diff --git a/modules/hosts/vps/home.nix b/modules/hosts/vps/home.nix index 1764545..10ce823 100644 --- a/modules/hosts/vps/home.nix +++ b/modules/hosts/vps/home.nix @@ -1,4 +1,3 @@ -{ ... }: { flake.modules.homeManager.vps = { home.stateVersion = "26.05"; diff --git a/modules/nixos/core/security.nix b/modules/nixos/core/security.nix index 391f5fc..12da9af 100644 --- a/modules/nixos/core/security.nix +++ b/modules/nixos/core/security.nix @@ -1,9 +1,7 @@ { - flake.modules.nixos.core = - { pkgs, ... }: - { - security = { - sudo.wheelNeedsPassword = false; - }; + flake.modules.nixos.core = { + security = { + sudo.wheelNeedsPassword = false; }; + }; }