From 1108a24654c161cef2b12bd104d77300850dfe0e Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Fri, 19 Jun 2026 14:10:33 -0500 Subject: add new host and move qdirstat/diskinfo into utils not extrautils --- hosts/sweetiepc/configuration.nix | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 hosts/sweetiepc/configuration.nix (limited to 'hosts/sweetiepc/configuration.nix') 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"; +} -- cgit v1.2.3