summaryrefslogtreecommitdiff
path: root/hosts/sweetiepc
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-06-19 14:10:33 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-06-19 14:10:33 -0500
commit1108a24654c161cef2b12bd104d77300850dfe0e (patch)
tree1630df79e982c080bccec9600d20ba88065649ee /hosts/sweetiepc
parent55b18ea26a8deb50d47083171b5b5ef3a6085c59 (diff)
downloadnixos-master.tar.xz
nixos-master.zip
add new host and move qdirstat/diskinfo into utils not extrautilsHEADmaster
Diffstat (limited to 'hosts/sweetiepc')
-rw-r--r--hosts/sweetiepc/configuration.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/hosts/sweetiepc/configuration.nix b/hosts/sweetiepc/configuration.nix
new file mode 100644
index 0000000..5c6b427
--- /dev/null
+++ b/hosts/sweetiepc/configuration.nix
@@ -0,0 +1,38 @@
+{ config, lib, pkgs, home-manager, ... }: {
+ # Setup bootloader
+ boot._loader.enable = true;
+
+ # Enable common options
+ _archetypes = {
+ profiles = {
+ desktop = {
+ enable = true;
+ home.users.timmy.enable = true;
+ };
+ zfs.enable = true;
+ };
+ collections = {
+ desktop = {
+ office.enable = true;
+ };
+ };
+ };
+
+ # Enable user timmy
+ _users.timmy = {
+ enable = true;
+ };
+
+ # Disable suspend
+ systemd._suspend.disable = true;
+
+ # Configure home
+ home-manager.users.timmy = {
+ fonts.fontconfig = {
+ subpixelRendering = "rgb";
+ hinting = "none";
+ };
+ };
+
+ system.stateVersion = "26.05";
+}