summaryrefslogtreecommitdiffstats
path: root/hosts/jontop
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-11-29 12:02:28 -0500
committerJon Santmyer <jon@jonsantmyer.com>2025-11-29 12:02:28 -0500
commit968c8b2ad3459c9834c3d4ccb799031f9be5b6ca (patch)
treec90b69158e92c445ed491d26e674602c2d1618f6 /hosts/jontop
parent34a81b72d264acc99972e4a8e77be33e713486c8 (diff)
downloadnix-config-968c8b2ad3459c9834c3d4ccb799031f9be5b6ca.tar.gz
nix-config-968c8b2ad3459c9834c3d4ccb799031f9be5b6ca.tar.bz2
nix-config-968c8b2ad3459c9834c3d4ccb799031f9be5b6ca.zip
update for niriHEADmaster
Diffstat (limited to 'hosts/jontop')
-rw-r--r--hosts/jontop/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/hosts/jontop/default.nix b/hosts/jontop/default.nix
index fc7e373..7b5c6c0 100644
--- a/hosts/jontop/default.nix
+++ b/hosts/jontop/default.nix
@@ -2,6 +2,7 @@
inputs,
lib,
pkgs,
+ rootPath,
...
}: {
#Filesystems
@@ -27,9 +28,9 @@
font-awesome
liberation_ttf
noto-fonts
- noto-fonts-cjk
+ noto-fonts-cjk-sans
noto-fonts-emoji
- (nerdfonts.override { fonts = [ "FiraCode" ]; } )
+ nerd-fonts.fira-code
texlive.combined.scheme-full
];
@@ -47,18 +48,23 @@
hasBluetooth = true;
};
desktop = {
- hyprland.enable = true;
+ niri.enable = true;
apps = {
browsers.firefox.enable = true;
games = {
enable = true;
- steam.enable = false;
+ steam.enable = true;
};
mpd.enable = false;
flatpak.enable = true;
newsboat.enable = true;
- latex.enable = true;
};
};
};
+
+ home.packages = with pkgs; [
+ cataclysm-dda
+ (callPackage (rootPath + /packages/freeciv/default.nix) {})
+ unstable.unciv
+ ];
}