Upgrade to NixOS 24.11 #151

Merged
jalil merged 3 commits from 24.11-upgrade into main 2024-11-20 19:06:08 +01:00
4 changed files with 6 additions and 5 deletions
Showing only changes of commit 123fbae06b - Show all commits

View file

@ -2,7 +2,7 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
overlays = builtins.attrValues inputs.self.overlays; overlays = builtins.attrValues inputs.self.overlays;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-original" ]; config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-unwrapped" ];
pkgs = import inputs.nixpkgs { inherit system overlays config; }; pkgs = import inputs.nixpkgs { inherit system overlays config; };
in in
{ {

View file

@ -58,7 +58,7 @@ in
eza = { eza = {
enable = true; enable = true;
git = true; git = true;
icons = true; icons = "auto";
}; };
# GnuPG # GnuPG
gpg = { gpg = {

View file

@ -31,7 +31,8 @@ in
lxqt.pcmanfm-qt lxqt.pcmanfm-qt
wl-clipboard wl-clipboard
# Extra fonts # Extra fonts
noto-fonts-cjk # Chinese, Japanese and Korean characters noto-fonts-cjk-sans # Chinese, Japanese and Korean characters
noto-fonts-cjk-serif # Chinese, Japanese and Korean characters
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; }) (nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
]) ])
++ lib.optional flatpakEnabled pkgs.flatpak; ++ lib.optional flatpakEnabled pkgs.flatpak;

View file

@ -13,7 +13,7 @@ in
config = lib.mkMerge [ config = lib.mkMerge [
(lib.mkIf enable { (lib.mkIf enable {
environment.systemPackages = [ environment.systemPackages = [
pkgs.gnome.adwaita-icon-theme pkgs.adwaita-icon-theme
pkgs.adwaita-qt pkgs.adwaita-qt
pkgs.nordzy-cursor-theme pkgs.nordzy-cursor-theme
pkgs.pinentry-qt pkgs.pinentry-qt
@ -88,7 +88,7 @@ in
# Consider using darkman like upstream # Consider using darkman like upstream
}; };
hardware = { hardware = {
opengl.enable = true; graphics.enable = true;
uinput.enable = true; uinput.enable = true;
steam-hardware.enable = cfg.steamHardwareSupport; steam-hardware.enable = cfg.steamHardwareSupport;
}; };