aboutsummaryrefslogtreecommitdiff
path: root/form/home.nix
diff options
context:
space:
mode:
authorstefan <stefan@s00.xyz>2025-03-03 21:34:53 -0500
committerstefan <stefan@s00.xyz>2025-03-03 21:34:53 -0500
commit390d23083905e9cd26ea44393422630ffe99c9a5 (patch)
tree431c2e0b7afd8bdd4897aeb2219f83faa7fd8c05 /form/home.nix
parente22ff337702e41ad4cd214894ab3b1a3d6fb8d96 (diff)
downloadhome-390d23083905e9cd26ea44393422630ffe99c9a5.tar.gz
getting started with multi-system support
Diffstat (limited to 'form/home.nix')
-rw-r--r--form/home.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/form/home.nix b/form/home.nix
new file mode 100644
index 0000000..c141011
--- /dev/null
+++ b/form/home.nix
@@ -0,0 +1,33 @@
+{ inputs, config, lib, pkgs, ... }:
+{
+ imports = [
+ ../modules/global.nix
+ ../modules
+ ];
+
+ config.modules = {
+ global = {
+ wayland = true;
+
+ extraPackages = with pkgs; [
+ wmenu
+ cmatrix
+ ];
+ };
+
+ foot.enable = true;
+
+ neovim = {
+ enable = true;
+ };
+
+ sway = {
+ enable = true;
+ terminal = "foot";
+ };
+
+ mako.enable = true;
+ neovide.enable = true;
+ zsh.enable = true;
+ };
+}