summaryrefslogtreecommitdiff
path: root/hosts/T430/configuration.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-09-16 18:13:24 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-09-16 18:13:24 -0500
commit3af6673ab362675a85bb6bb4cf0f7706ae6bdfab (patch)
tree10c78294f129694081c4a70d27634c4040b70263 /hosts/T430/configuration.nix
parent6a24271e1ae899979b15f6d7d2ebfa8ca5a42818 (diff)
downloadnixos-master.tar.xz
nixos-master.zip
replace T495 config for T430HEADmaster
Diffstat (limited to 'hosts/T430/configuration.nix')
-rw-r--r--hosts/T430/configuration.nix65
1 files changed, 65 insertions, 0 deletions
diff --git a/hosts/T430/configuration.nix b/hosts/T430/configuration.nix
new file mode 100644
index 0000000..929bab5
--- /dev/null
+++ b/hosts/T430/configuration.nix
@@ -0,0 +1,65 @@
+{ config, lib, pkgs, ... }: {
+ #imports = [ ./wg.nix ];
+
+ # Setup bootloader
+ boot._loader.enable = true;
+
+ # Enable common options
+ _archetypes = {
+ profiles = {
+ desktop = {
+ enable = true;
+ home.users.timmy.enable = true;
+ };
+ btrfs.enable = true;
+ };
+ collections = {
+ desktop = {
+ extraUtilities.enable = true;
+ cad.enable = true;
+ chromium.enable = true;
+ crypto.enable = true;
+ graphics.enable = true;
+ office.enable = true;
+ };
+ };
+ };
+
+ # Enable user timmy
+ _users.timmy = {
+ enable = true;
+ autologin.enable = true;
+ wifi.enable = true;
+ };
+
+ # Configure home
+ home-manager.users.timmy = {
+ gtk._mintTheme = {
+ dark = true;
+ color = "Purple";
+ icons.color = "Purple";
+ };
+ gtk = {
+ font.name = "monospace";
+ font.size = 8;
+ cursorTheme.size = 24;
+ };
+ programs._st = {
+ enable = true;
+ font = {
+ name = "TamzenForPowerline";
+ attrs = {
+ pixelsize = 14;
+ };
+ };
+ };
+ programs._seasonalwallpaper.wallpapers.download = true;
+ fonts.fontconfig = {
+ defaultFonts.monospace = [ "TamzenForPowerline" ];
+ subpixelRendering = "rgb";
+ hinting = "slight";
+ };
+ };
+
+ system.stateVersion = "24.05";
+}