From 5beb727fe975dd7f8b911f2f8498e6b11399210e Mon Sep 17 00:00:00 2001 From: k3t Date: Sun, 8 Mar 2026 00:31:42 -0700 Subject: [PATCH] moved some things around --- hosts/desktop/configuration.nix | 13 +++++++++++++ hosts/laptop/configuration.nix | 9 +++++++-- modules/desktop-common.nix | 12 ------------ 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index a5927db..3cddd60 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -23,4 +23,17 @@ services.openssh.enable = true; virtualisation.vmware.host.enable = true; + users.users.k3t = { + packages = with pkgs; [ + anydesk + bubblewrap + fuse-overlayfs + nicotine-plus + lutris + prismlauncher + wineWowPackages.waylandFull + virt-viewer + winetricks + ]; + }; } diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 5700faf..f0d83eb 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -13,7 +13,7 @@ services.beesd.filesystems = { root = { spec = "LABEL=NixOS"; - hashTableSizeMB = 256; + hashTableSizeMB = 128; verbosity = "crit"; extraOptions = [ "--loadavg-target" "1.5" ]; }; @@ -21,6 +21,11 @@ networking.hostName = "T14"; # Define your hostname. services.openssh.enable = true; - virtualisation.vmware.host.enable = true; + users.users.k3t = { + packages = with pkgs; [ + anydesk + virt-viewer + ]; + }; } diff --git a/modules/desktop-common.nix b/modules/desktop-common.nix index e386a39..17591fd 100644 --- a/modules/desktop-common.nix +++ b/modules/desktop-common.nix @@ -167,26 +167,14 @@ users.users.k3t = { packages = with pkgs; [ - anydesk - dwarfs - bubblewrap - fuse-overlayfs - nicotine-plus qbittorrent kdePackages.kate - lutris gearlever - remmina - thunderbird - prismlauncher jellyfin-desktop flatpak vscode.fhs signal-desktop spotify - wineWowPackages.waylandFull - virt-viewer - winetricks ]; }; }