summaryrefslogtreecommitdiff
path: root/hosts/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/desktop')
-rw-r--r--hosts/desktop/configuration.nix9
-rw-r--r--hosts/desktop/disko.nix6
-rw-r--r--hosts/desktop/home.nix7
3 files changed, 13 insertions, 9 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 2bc4826..9fbe3cb 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -77,7 +77,10 @@
};
gaming = {
enable = true;
- steam.enable = true;
+ steam = {
+ enable = true;
+ enableSls = true;
+ };
vr.enable = true;
};
sunshine.enable = true;
@@ -107,9 +110,7 @@
];
};
- environment.systemPackages = [
- pkgs-master.simplex-chat-desktop
- ];
+ environment.systemPackages = [ pkgs-master.simplex-chat-desktop ];
# services.netbox = {
# enable = true;
diff --git a/hosts/desktop/disko.nix b/hosts/desktop/disko.nix
index 5b3b626..f0eb6cd 100644
--- a/hosts/desktop/disko.nix
+++ b/hosts/desktop/disko.nix
@@ -69,7 +69,7 @@
];
};
"games" = {
- mountpoint = "/games";
+ mountpoint = "/home/adam/games";
mountOptions = [
"compress=none"
"discard=async"
@@ -79,7 +79,7 @@
];
};
"llms" = {
- mountpoint = "/llms";
+ mountpoint = "/home/adam/llms";
mountOptions = [
"compress=none"
"discard=async"
@@ -90,7 +90,7 @@
];
};
"vms" = {
- mountpoint = "/vms";
+ mountpoint = "/home/adam/vms";
mountOptions = [
"compress=none"
"discard=async"
diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix
index da433d6..5a4f373 100644
--- a/hosts/desktop/home.nix
+++ b/hosts/desktop/home.nix
@@ -1,4 +1,8 @@
-{ username, pkgs, ... }:
+{
+ username,
+ pkgs,
+ ...
+}:
{
imports = [ ../../hm/default.nix ];
@@ -93,6 +97,5 @@
tmux
gimp
stow
- element-desktop
];
}