summaryrefslogtreecommitdiff
path: root/hosts/T495/configuration.nix
diff options
context:
space:
mode:
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";
-}