diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-19 14:10:33 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-19 14:10:33 -0500 |
| commit | 1108a24654c161cef2b12bd104d77300850dfe0e (patch) | |
| tree | 1630df79e982c080bccec9600d20ba88065649ee /hosts | |
| parent | 55b18ea26a8deb50d47083171b5b5ef3a6085c59 (diff) | |
| download | nixos-1108a24654c161cef2b12bd104d77300850dfe0e.tar.xz nixos-1108a24654c161cef2b12bd104d77300850dfe0e.zip | |
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/sweetiepc/configuration.nix | 38 |
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"; +} |
