Skip to content

Commit

Permalink
statix fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunsingh committed Nov 18, 2023
1 parent 2a25dc2 commit 33afa96
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion hosts/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
# nix-darwin configurations
Expand Down
4 changes: 3 additions & 1 deletion hosts/m1/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{ ... }: {
_:

{
security.pam.enableSudoTouchIdAuth = true;
}
2 changes: 1 addition & 1 deletion modules/shared/home-manager/wayland/kickoff.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in
};

settings = mkOption {
type = tomlFormat.type;
inherit (tomlFormat) type;
default = { };
description = ''
Configuration written to
Expand Down
2 changes: 1 addition & 1 deletion users/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:
{
# home-manager configurations
parts.homeConfigurations = {
Expand Down
6 changes: 2 additions & 4 deletions users/shaurizard/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 33afa96

Please sign in to comment.