diff options
Diffstat (limited to 'hosts/shinji/default.nix')
| -rw-r--r-- | hosts/shinji/default.nix | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/hosts/shinji/default.nix b/hosts/shinji/default.nix index 1ae7d56..750b22a 100644 --- a/hosts/shinji/default.nix +++ b/hosts/shinji/default.nix @@ -1,10 +1,6 @@ # Shinji # System configuration for my laptop -{ - lib, - pkgs, - ... -}: { +{pkgs, ...}: { imports = [ ./hardware.nix ./sops.nix @@ -13,9 +9,11 @@ # options hostName = "shinji"; + cores = 16; monitors = [ { port = "eDP-1"; + laptop = true; scale = 1.25; bitdepth = 10; } @@ -41,18 +39,18 @@ # set power btn to suspend services.logind.settings.Login = { HandlePowerKey = "suspend"; - HandeLidSwitch = "suspend"; - HandeLidSwitchDocked = "suspend"; }; # logitech mouse udev - services.udev.extraRules = lib.fileContents ./42-logitech-unify-permissions.rules; + services.udev.packages = [ + pkgs.solaar-udev-rules + ]; # packages environment.systemPackages = with pkgs; [ # wine winetricks - wineWowPackages.staging + wineWow64Packages.staging # android android-tools scrcpy @@ -64,8 +62,10 @@ # modules apps = { - astal.enable = true; + caelestia.enable = true; hyprlock.enable = true; + rofi.enable = true; + kanshi.enable = true; kitty.enable = true; }; browsers = { @@ -99,5 +99,4 @@ bluetooth = true; network = true; tpm = true; - hardened = true; } |