aboutsummaryrefslogtreecommitdiff
path: root/void
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-03-03 22:51:57 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-03-03 22:51:57 -0500
commit1eeac2ea610328dfaca0b65d88471b57a04d5a8b (patch)
tree181d33b6e5bd79b473f5f3707c52e8e12fe491ec /void
parent25ed6898befb1c5d35b5517d60633c2a4d8eb540 (diff)
downloadhome-1eeac2ea610328dfaca0b65d88471b57a04d5a8b.tar.gz
setup on laptop
Diffstat (limited to 'void')
-rw-r--r--void/home.nix33
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;
+ };
+}