mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
Use unstable for all the things
This commit is contained in:
@@ -9,12 +9,9 @@
|
||||
fira-mono
|
||||
font-awesome
|
||||
google-fonts
|
||||
liberation_ttf # Free replacement for MS Fonts.
|
||||
noto-fonts
|
||||
liberation_ttf
|
||||
noto-fonts
|
||||
noto-fonts-cjk
|
||||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
];
|
||||
@@ -23,7 +20,7 @@
|
||||
fonts.fontconfig.defaultFonts = {
|
||||
sansSerif = [ "Noto Sans" ];
|
||||
serif = [ "Noto Serif" ];
|
||||
monospace = [ "MesloLGS Nerd Font" "Noto Sans Mono" ];
|
||||
monospace = [ "Noto Sans Mono" ];
|
||||
emoji = [ "Noto Color Emoji" ];
|
||||
};
|
||||
}
|
||||
|
@@ -1,8 +1,8 @@
|
||||
{ unstable, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Use the latest kernel
|
||||
boot.kernelPackages = unstable.linuxPackages_latest;
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
# Enable support for additional filesystems
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
|
@@ -1,8 +1,8 @@
|
||||
{ config, lib, pkgs, unstable, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# System-wide packages to install.
|
||||
environment.systemPackages = with unstable;
|
||||
environment.systemPackages = with pkgs;
|
||||
let
|
||||
common = [
|
||||
# utils
|
||||
|
Reference in New Issue
Block a user