From 3af6673ab362675a85bb6bb4cf0f7706ae6bdfab Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Wed, 16 Sep 2026 18:13:24 -0500 Subject: replace T495 config for T430 --- hosts/T495/configuration.nix | 88 -------------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 hosts/T495/configuration.nix (limited to 'hosts/T495/configuration.nix') 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"; -} -- cgit v1.2.3