From bea9dfd961d09ed65330087ff8fe2f98807717ac Mon Sep 17 00:00:00 2001 From: Emmet Date: Tue, 10 Sep 2024 20:06:41 -0500 Subject: [PATCH 1/4] Fix glyphs --- system/wm/fonts.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ]; } From b527338140970b44888c1966115b9533ea54424b Mon Sep 17 00:00:00 2001 From: Emmet Date: Tue, 10 Sep 2024 20:08:32 -0500 Subject: [PATCH 2/4] Fix weird kwallet bug (I think?) --- profiles/work/home.nix | 2 +- system/wm/hyprland.nix | 5 ----- user/style/stylix.nix | 1 - 3 files changed, 1 insertion(+), 7 deletions(-) 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/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/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; From eff947805459805ef425ca8ea25c48e8530c4274 Mon Sep 17 00:00:00 2001 From: Emmet Date: Tue, 10 Sep 2024 20:09:01 -0500 Subject: [PATCH 3/4] Help network filesystems --- user/app/ranger/rc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? From 115452369988dde4fac3636a6c87bc2b175f7285 Mon Sep 17 00:00:00 2001 From: Emmet Date: Tue, 10 Sep 2024 20:09:33 -0500 Subject: [PATCH 4/4] Need more power! --- system/hardware/power.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; };