mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
Compare commits
4 commits
4338c3a9b9
...
1154523699
Author | SHA1 | Date | |
---|---|---|---|
1154523699 | |||
eff9478054 | |||
b527338140 | |||
bea9dfd961 |
|
@ -183,7 +183,7 @@
|
|||
libffi zlib
|
||||
nodePackages.ungit
|
||||
ventoy
|
||||
kdePackages.kdenlive
|
||||
kdenlive
|
||||
]);
|
||||
|
||||
home.file.".local/share/pixmaps/nixos-snowflake-stylix.svg".source =
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -26,11 +26,6 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
environment = {
|
||||
plasma5.excludePackages = [ pkgs.kdePackages.systemsettings ];
|
||||
plasma6.excludePackages = [ pkgs.kdePackages.systemsettings ];
|
||||
};
|
||||
|
||||
services.xserver.excludePackages = [ pkgs.xterm ];
|
||||
|
||||
services.xserver = {
|
||||
|
|
|
@ -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?
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue