refactor: remove unused arguments

This commit is contained in:
tux
2026-08-12 05:42:38 +05:30
parent f7a96f76f7
commit f0d42515c4
5 changed files with 9 additions and 16 deletions

View File

@@ -1,4 +1,3 @@
{ ... }:
{ {
flake.modules.homeManager.alpha = { flake.modules.homeManager.alpha = {
home.stateVersion = "26.05"; home.stateVersion = "26.05";

View File

@@ -1,4 +1,3 @@
{ ... }:
{ {
flake.modules.homeManager.arcturus = { flake.modules.homeManager.arcturus = {
home.stateVersion = "26.05"; home.stateVersion = "26.05";

View File

@@ -117,11 +117,9 @@ in
}; };
}; };
perSystem = perSystem = {
{ ... }: checks = builtins.mapAttrs (
{ _: config: config.config.system.build.toplevel
checks = builtins.mapAttrs ( ) self.nixosConfigurations;
_: config: config.config.system.build.toplevel };
) self.nixosConfigurations;
};
} }

View File

@@ -1,4 +1,3 @@
{ ... }:
{ {
flake.modules.homeManager.vps = { flake.modules.homeManager.vps = {
home.stateVersion = "26.05"; home.stateVersion = "26.05";

View File

@@ -1,9 +1,7 @@
{ {
flake.modules.nixos.core = flake.modules.nixos.core = {
{ pkgs, ... }: security = {
{ sudo.wheelNeedsPassword = false;
security = {
sudo.wheelNeedsPassword = false;
};
}; };
};
} }