diff options
Diffstat (limited to 'void')
| -rw-r--r-- | void/home.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/void/home.nix b/void/home.nix new file mode 100644 index 0000000..78f05fc --- /dev/null +++ b/void/home.nix @@ -0,0 +1,33 @@ +{ inputs, config, lib, pkgs, ... }: +{ + imports = [ + ../modules/global.nix + ../modules + ]; + + config.modules = { + global = { + notNixOS = true; + wayland = true; + + extraPackages = with pkgs; [ + wmenu + cmatrix + ]; + }; + + foot.enable = true; + + neovim = { + enable = true; + }; + + sway = { + enable = true; + terminal = "foot"; + }; + + mako.enable = true; + neovide.enable = true; + }; +} |