diff --git a/profiles/work/home.nix b/profiles/work/home.nix index c9e7110..27335c9 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -183,7 +183,7 @@ libffi zlib nodePackages.ungit ventoy - kdenlive + kdePackages.kdenlive ]); home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source = diff --git a/system/hardware/power.nix b/system/hardware/power.nix index 893d1a8..4c0b58c 100644 --- a/system/hardware/power.nix +++ b/system/hardware/power.nix @@ -40,8 +40,8 @@ RADEON_POWER_PROFILE_ON_AC = "high"; RADEON_POWER_PROFILE_ON_BAT = "low"; - INTEL_GPU_MIN_FREQ_ON_AC = 600; - INTEL_GPU_MIN_FREQ_ON_BAT = 600; + INTEL_GPU_MIN_FREQ_ON_AC = 250; + INTEL_GPU_MIN_FREQ_ON_BAT = 250; }; }; diff --git a/system/wm/fonts.nix b/system/wm/fonts.nix index a1ec65e..0199e4c 100644 --- a/system/wm/fonts.nix +++ b/system/wm/fonts.nix @@ -1,11 +1,11 @@ -{ pkgs-stable, ... }: +{ pkgs, ... }: { # Fonts are nice to have - fonts.packages = with pkgs-stable; [ + fonts.packages = with pkgs; [ # Fonts - nerdfonts - powerline + # nerdfonts # FIXME broken + # powerline # FIXME broken by python 311 -> 312 nixpkgs update ]; } diff --git a/system/wm/hyprland.nix b/system/wm/hyprland.nix index 5d7cada..4815bad 100644 --- a/system/wm/hyprland.nix +++ b/system/wm/hyprland.nix @@ -26,6 +26,11 @@ in }; }; + environment = { + plasma5.excludePackages = [ pkgs.kdePackages.systemsettings ]; + plasma6.excludePackages = [ pkgs.kdePackages.systemsettings ]; + }; + services.xserver.excludePackages = [ pkgs.xterm ]; services.xserver = { diff --git a/user/app/ranger/rc.conf b/user/app/ranger/rc.conf index 7623aff..6a8cdfa 100644 --- a/user/app/ranger/rc.conf +++ b/user/app/ranger/rc.conf @@ -144,7 +144,7 @@ set colorscheme hail # Preview files on the rightmost column? # And collapse (shrink) the last column if there is nothing to preview? set preview_files true -set preview_directories false +set preview_directories true set collapse_preview true # Wrap long lines in plain text previews? diff --git a/user/style/stylix.nix b/user/style/stylix.nix index 2b5d2a7..1aa70a9 100644 --- a/user/style/stylix.nix +++ b/user/style/stylix.nix @@ -74,6 +74,7 @@ in font.size = config.stylix.fonts.sizes.terminal; font.normal.family = userSettings.font; }; + stylix.targets.kde.enable = true; stylix.targets.kitty.enable = true; stylix.targets.gtk.enable = true; stylix.targets.rofi.enable = if (userSettings.wmType == "x11") then true else false;