Compare commits

..

No commits in common. "115452369988dde4fac3636a6c87bc2b175f7285" and "4338c3a9b998cb49493338c1a55c94ac9cc3804b" have entirely different histories.

6 changed files with 14 additions and 8 deletions

View file

@ -183,7 +183,7 @@
libffi zlib libffi zlib
nodePackages.ungit nodePackages.ungit
ventoy ventoy
kdenlive kdePackages.kdenlive
]); ]);
home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source = home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source =

View file

@ -40,8 +40,8 @@
RADEON_POWER_PROFILE_ON_AC = "high"; RADEON_POWER_PROFILE_ON_AC = "high";
RADEON_POWER_PROFILE_ON_BAT = "low"; RADEON_POWER_PROFILE_ON_BAT = "low";
INTEL_GPU_MIN_FREQ_ON_AC = 600; INTEL_GPU_MIN_FREQ_ON_AC = 250;
INTEL_GPU_MIN_FREQ_ON_BAT = 600; INTEL_GPU_MIN_FREQ_ON_BAT = 250;
}; };
}; };

View file

@ -1,11 +1,11 @@
{ pkgs-stable, ... }: { pkgs, ... }:
{ {
# Fonts are nice to have # Fonts are nice to have
fonts.packages = with pkgs-stable; [ fonts.packages = with pkgs; [
# Fonts # Fonts
nerdfonts # nerdfonts # FIXME broken
powerline # powerline # FIXME broken by python 311 -> 312 nixpkgs update
]; ];
} }

View file

@ -26,6 +26,11 @@ in
}; };
}; };
environment = {
plasma5.excludePackages = [ pkgs.kdePackages.systemsettings ];
plasma6.excludePackages = [ pkgs.kdePackages.systemsettings ];
};
services.xserver.excludePackages = [ pkgs.xterm ]; services.xserver.excludePackages = [ pkgs.xterm ];
services.xserver = { services.xserver = {

View file

@ -144,7 +144,7 @@ set colorscheme hail
# Preview files on the rightmost column? # Preview files on the rightmost column?
# And collapse (shrink) the last column if there is nothing to preview? # And collapse (shrink) the last column if there is nothing to preview?
set preview_files true set preview_files true
set preview_directories false set preview_directories true
set collapse_preview true set collapse_preview true
# Wrap long lines in plain text previews? # Wrap long lines in plain text previews?

View file

@ -74,6 +74,7 @@ in
font.size = config.stylix.fonts.sizes.terminal; font.size = config.stylix.fonts.sizes.terminal;
font.normal.family = userSettings.font; font.normal.family = userSettings.font;
}; };
stylix.targets.kde.enable = true;
stylix.targets.kitty.enable = true; stylix.targets.kitty.enable = true;
stylix.targets.gtk.enable = true; stylix.targets.gtk.enable = true;
stylix.targets.rofi.enable = if (userSettings.wmType == "x11") then true else false; stylix.targets.rofi.enable = if (userSettings.wmType == "x11") then true else false;