diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/boot.nix | 5 | ||||
| -rw-r--r-- | modules/hyprland.nix | 1 | ||||
| -rw-r--r-- | modules/networking.nix | 2 | ||||
| -rw-r--r-- | modules/scx.nix | 16 |
4 files changed, 11 insertions, 13 deletions
diff --git a/modules/boot.nix b/modules/boot.nix index 2d8f78a..6930a51 100644 --- a/modules/boot.nix +++ b/modules/boot.nix @@ -6,7 +6,7 @@ systemd-boot = { enable = true; editor = false; - configurationLimit = 10; + configurationLimit = null; }; timeout = 0; }; @@ -16,8 +16,7 @@ kernelParams = [ "video=DP-1:2560x1440@240" "quiet" - "nvme" ]; - kernelPackages = pkgs.linuxPackages_cachyos-rc.cachyOverride { mArch = "ZEN4"; }; + kernelPackages = pkgs.linuxPackages_cachyos-lto.cachyOverride { mArch = "ZEN4"; }; }; } diff --git a/modules/hyprland.nix b/modules/hyprland.nix index f3e35fa..295cd7d 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -3,5 +3,6 @@ programs.hyprland = { enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; + # package = pkgs.hyprland; }; } diff --git a/modules/networking.nix b/modules/networking.nix index 29de399..9d1212d 100644 --- a/modules/networking.nix +++ b/modules/networking.nix @@ -1,6 +1,6 @@ { ... }: { - systemd.services."NetworkManager-wait-online".enable = false; + # systemd.services."NetworkManager-wait-online".enable = false; networking = { hostName = "szpont"; diff --git a/modules/scx.nix b/modules/scx.nix index b1f5dad..b6af15c 100644 --- a/modules/scx.nix +++ b/modules/scx.nix @@ -1,14 +1,12 @@ -{ config, pkgs, ... }: - +{ ... }: { services.scx = { enable = true; - - scheduler = "scx_lavd"; - extraArgs =[ - '' - --performance - '' - ]; + scheduler = "scx_rusty"; + # extraArgs =[ + # '' + # --performance + # '' + # ]; }; } |
