diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-05-30 21:38:35 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-05-30 21:38:35 -0500 |
| commit | 7f42d4f20b7aec1da13d2d91ad2dbf8b269872ee (patch) | |
| tree | 3949e2102d35ffcd795475e499ad773c209971b7 /hosts/gnuslashprinter/configuration.nix | |
| parent | 2fb21925d00cbbfcb67ff531ed975e2d8d349542 (diff) | |
| download | nixos-7f42d4f20b7aec1da13d2d91ad2dbf8b269872ee.tar.xz nixos-7f42d4f20b7aec1da13d2d91ad2dbf8b269872ee.zip | |
add gnuslashprinter host
Diffstat (limited to 'hosts/gnuslashprinter/configuration.nix')
| -rw-r--r-- | hosts/gnuslashprinter/configuration.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/gnuslashprinter/configuration.nix b/hosts/gnuslashprinter/configuration.nix new file mode 100644 index 0000000..b05a587 --- /dev/null +++ b/hosts/gnuslashprinter/configuration.nix @@ -0,0 +1,18 @@ +{ + boot._loader.enable = true; + + _archetypes = { + profiles = { + headless = { + enable = true; + home.users.timmy.enable = true; + }; + btrfs.enable = true; + }; + }; + + # Enable user timmy + _users.timmy.enable = true; + + system.stateVersion = "25.11"; +} |
