aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 12:08:53 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 12:08:53 -0500
commitc867dd3ea21816e69de08088385d0d9246433765 (patch)
treec8f0c6e3d81d758e6b77fdbdc7875daa436eac61 /home.nix
parent1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (diff)
downloadhome-c867dd3ea21816e69de08088385d0d9246433765.tar.gz
fixed nixGL wrapper
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix13
1 files changed, 12 insertions, 1 deletions
diff --git a/home.nix b/home.nix
index 230502c..fc54d2a 100644
--- a/home.nix
+++ b/home.nix
@@ -1,4 +1,4 @@
-{ inputs, config, lib, pkgs, ... }:
+{ inputs, config, lib, pkgs, nixgl, ... }:
{
imports = [
./modules/global.nix
@@ -6,6 +6,17 @@
];
config.modules = {
+ global = {
+ notNixOS = true;
+ };
foot.enable = true;
+
+
+ neovim = {
+ enable = true;
+ };
+# sway = {
+# enable = true;
+# };
};
}