aboutsummaryrefslogtreecommitdiff
path: root/nixos/opt
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-01-04 11:25:48 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-01-04 11:25:48 +0530
commitaa0bdc1e4b65e3fbbb10c49cd1d4e20d491359b3 (patch)
tree65acefff0973b025ac0e9a9fd97c54d8289f284a /nixos/opt
parent042ed4718236a375c99125772b60c9afa9cfd40f (diff)
rust lsp fix + languages on/off
Diffstat (limited to 'nixos/opt')
-rw-r--r--nixos/opt/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/nixos/opt/default.nix b/nixos/opt/default.nix
index c9b6892..58a6dcf 100644
--- a/nixos/opt/default.nix
+++ b/nixos/opt/default.nix
@@ -1,9 +1,6 @@
-{ nvidia, llm, ... }:
+{ opt, ... }:
{
imports =
- (if nvidia then [
- ./nvidia.nix
- ] else []) ++ (if llm then [
- ./llm.nix
- ] else []);
+ (if opt.nvidia then [ ./nvidia.nix ] else []) ++
+ (if opt.llm then [ ./llm.nix ] else []);
}