diff --git a/hosts/default.nix b/hosts/default.nix index 08962024..41582270 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { # nix-darwin configurations diff --git a/hosts/m1/configuration.nix b/hosts/m1/configuration.nix index 756098e6..1648cd2d 100644 --- a/hosts/m1/configuration.nix +++ b/hosts/m1/configuration.nix @@ -1,3 +1,5 @@ -{ ... }: { +_: + +{ security.pam.enableSudoTouchIdAuth = true; } diff --git a/modules/shared/home-manager/wayland/kickoff.nix b/modules/shared/home-manager/wayland/kickoff.nix index 5caee406..22da8720 100644 --- a/modules/shared/home-manager/wayland/kickoff.nix +++ b/modules/shared/home-manager/wayland/kickoff.nix @@ -22,7 +22,7 @@ in }; settings = mkOption { - type = tomlFormat.type; + inherit (tomlFormat) type; default = { }; description = '' Configuration written to diff --git a/users/default.nix b/users/default.nix index 12a85288..b86649c8 100644 --- a/users/default.nix +++ b/users/default.nix @@ -1,4 +1,4 @@ -{ ... }: +_: { # home-manager configurations parts.homeConfigurations = { diff --git a/users/shaurizard/home.nix b/users/shaurizard/home.nix index 70e8313a..d80767ab 100644 --- a/users/shaurizard/home.nix +++ b/users/shaurizard/home.nix @@ -821,8 +821,7 @@ package = inputs.eww.packages.${system}.eww-wayland; configDir = let - ewwYuck = pkgs.writeText "eww.yuck" ( - '' + ewwYuck = pkgs.writeText "eww.yuck" '' (defwidget bar [] (centerbox :orientation "v" :halign "center" @@ -936,8 +935,7 @@ :anchor "left center") :exclusive true (bar)) - '' - ); + ''; ewwScss = pkgs.writeText "eww.scss" (with config.lib.base16.theme; '' $baseTR: rgba(13,13,13,0.13);