💾 Changed flakes to use latest stable where possible

This commit is contained in:
2025-01-05 18:14:52 +01:00
parent 9aa4ac2816
commit 36bb075dd2
4 changed files with 53 additions and 35 deletions

View File

@ -37,13 +37,13 @@
"networkmanager"
"wheel"
];
packages = with pkgs; [ ];
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
environment.sessionVariables = {
FLAKE = "/etc/nixos";
# Tells Electron apps to use Wayland
NIXOS_OZONE_WL = "1";
NIXOS_CONFIG_PATH = "/etc/nixos";
@ -53,7 +53,10 @@
fonts = {
fontconfig.enable = true;
packages = with pkgs; [
nerd-fonts.jetbrains-mono
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
jetbrains-mono
# The line below will replace the lines above in 25.05
# nerd-fonts.jetbrains-mono
];
};