diff options
Diffstat (limited to 'hosts/shinji/default.nix')
| -rw-r--r-- | hosts/shinji/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/shinji/default.nix b/hosts/shinji/default.nix index 34e84ec..65222e6 100644 --- a/hosts/shinji/default.nix +++ b/hosts/shinji/default.nix @@ -3,6 +3,8 @@ { lib, pkgs, + inputs, + system, ... }: { imports = [ @@ -46,7 +48,9 @@ }; # logitech mouse udev - services.udev.extraRules = lib.fileContents ./42-logitech-unify-permissions.rules; + services.udev.packages = [ + inputs.self.packages.${system}.solaar-udev-rules + ]; # packages environment.systemPackages = with pkgs; [ @@ -64,8 +68,8 @@ # modules apps = { - astal.enable = true; - hyprlock.enable = true; + caelestia.enable = true; + rofi.enable = true; kitty.enable = true; }; browsers = { @@ -99,4 +103,5 @@ bluetooth = true; network = true; tpm = true; + hardened = false; } |