summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-25 09:27:39 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-25 09:27:39 -0600
commit182f10a725e154d46069213ad709711f83c7c57a (patch)
tree3d45b4fb7c3d3d074fe6fcab5a0d31d6c8a367d3
parent9394a6667c641aea04737314349070fa07088bb5 (diff)
downloadnixos-182f10a725e154d46069213ad709711f83c7c57a.tar.xz
nixos-182f10a725e154d46069213ad709711f83c7c57a.zip
X230 init 25.11
-rw-r--r--hosts/X230/configuration.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/hosts/X230/configuration.nix b/hosts/X230/configuration.nix
index af0ef25..5e8d0ea 100644
--- a/hosts/X230/configuration.nix
+++ b/hosts/X230/configuration.nix
@@ -17,11 +17,13 @@
office.enable = true;
};
};
- # Setup user
- users.primary = {
- enable = true;
- autologin.enable = true;
- };
+ };
+
+ # Enable user timmy
+ _users.timmy = {
+ enable = true;
+ autologin.enable = true;
+ wifi.enable = true;
};
# Configure home
@@ -46,6 +48,11 @@
};
};
};
+ programs._seasonalwallpaper.wallpapers.download = true;
+ fonts.fontconfig = {
+ subpixelRendering = "rgb";
+ hinting = "full";
+ };
};
system.stateVersion = "24.05";