diff --git a/profiles/work/home.nix b/profiles/work/home.nix index 27335c9..c9e7110 100644 --- a/profiles/work/home.nix +++ b/profiles/work/home.nix @@ -183,7 +183,7 @@ libffi zlib nodePackages.ungit ventoy - kdePackages.kdenlive + kdenlive ]); home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source = diff --git a/system/hardware/power.nix b/system/hardware/power.nix index 4c0b58c..893d1a8 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 = 250; - INTEL_GPU_MIN_FREQ_ON_BAT = 250; + INTEL_GPU_MIN_FREQ_ON_AC = 600; + INTEL_GPU_MIN_FREQ_ON_BAT = 600; }; }; diff --git a/system/wm/fonts.nix b/system/wm/fonts.nix index 0199e4c..a1ec65e 100644 --- a/system/wm/fonts.nix +++ b/system/wm/fonts.nix @@ -1,11 +1,11 @@ -{ pkgs, ... }: +{ pkgs-stable, ... }: { # Fonts are nice to have - fonts.packages = with pkgs; [ + fonts.packages = with pkgs-stable; [ # Fonts - # nerdfonts # FIXME broken - # powerline # FIXME broken by python 311 -> 312 nixpkgs update + nerdfonts + powerline ]; } diff --git a/system/wm/hyprland.nix b/system/wm/hyprland.nix index 4815bad..5d7cada 100644 --- a/system/wm/hyprland.nix +++ b/system/wm/hyprland.nix @@ -26,11 +26,6 @@ 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 6a8cdfa..7623aff 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 true +set preview_directories false set collapse_preview true # Wrap long lines in plain text previews? diff --git a/user/style/stylix.nix b/user/style/stylix.nix index 1aa70a9..2b5d2a7 100644 --- a/user/style/stylix.nix +++ b/user/style/stylix.nix @@ -74,7 +74,6 @@ 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;