diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
| commit | c867dd3ea21816e69de08088385d0d9246433765 (patch) | |
| tree | c8f0c6e3d81d758e6b77fdbdc7875daa436eac61 /home.nix | |
| parent | 1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (diff) | |
| download | home-c867dd3ea21816e69de08088385d0d9246433765.tar.gz | |
fixed nixGL wrapper
Diffstat (limited to 'home.nix')
| -rw-r--r-- | home.nix | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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; +# }; }; } |