summaryrefslogtreecommitdiff
path: root/hosts/sweetiepc/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/sweetiepc/configuration.nix')
-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";
+}