summaryrefslogtreecommitdiff
path: root/hosts/T495/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/T495/configuration.nix
parent6a24271e1ae899979b15f6d7d2ebfa8ca5a42818 (diff)
downloadnixos-3af6673ab362675a85bb6bb4cf0f7706ae6bdfab.tar.xz
nixos-3af6673ab362675a85bb6bb4cf0f7706ae6bdfab.zip
replace T495 config for T430HEADmaster
Diffstat (limited to 'hosts/T495/configuration.nix')
-rw-r--r--hosts/T495/configuration.nix88
1 files changed, 0 insertions, 88 deletions
diff --git a/hosts/T495/configuration.nix b/hosts/T495/configuration.nix
deleted file mode 100644
index b80f27e..0000000
--- a/hosts/T495/configuration.nix
+++ /dev/null
@@ -1,88 +0,0 @@
-{ 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;
- };
- development = {
- android.enable = true;
- c.enable = true;
- docker.enable = true;
- lua.enable = true;
- web = {
- hugo = {
- enable = true;
- openFirewall = true;
- };
- node.enable = true;
- };
- };
- bluetooth.enable = true;
- };
- };
-
- # Enable user timmy
- _users.timmy = {
- enable = true;
- autologin.enable = true;
- nas = {
- enable = true;
- office.enable = true;
- };
- wifi.enable = true;
- };
-
- # Install spotify
- nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
- "spotify"
- ];
- environment.systemPackages = with pkgs; [
- spotify
- ];
-
- # Use amdgpu driver for x11
- services.xserver.videoDrivers = [ "amdgpu" ];
-
- # Configure home
- home-manager.users.timmy = {
- gtk._mintTheme = {
- dark = true;
- color = "Purple";
- icons.color = "Purple";
- };
- programs._st = {
- enable = true;
- font = {
- name = "TamzenForPowerline";
- attrs = {
- pixelsize = 20;
- };
- };
- };
- programs._seasonalwallpaper.wallpapers.download = true;
- fonts.fontconfig = {
- subpixelRendering = "rgb";
- hinting = "slight";
- };
- };
-
- system.stateVersion = "24.05";
-}