diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-24 13:10:57 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-24 13:10:57 -0400 |
| commit | f6cb5fe08b97af63fbdd2d32ff8896c142536850 (patch) | |
| tree | 683bdd10af9cac7927546b15db3745085a281f6e /fw/home.nix | |
| parent | 2a9a6f104b95789ed218942bcf30f8b22ffda0f9 (diff) | |
| download | home-f6cb5fe08b97af63fbdd2d32ff8896c142536850.tar.gz | |
fw: init
Diffstat (limited to 'fw/home.nix')
| -rw-r--r-- | fw/home.nix | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/fw/home.nix b/fw/home.nix new file mode 100644 index 0000000..99acdde --- /dev/null +++ b/fw/home.nix @@ -0,0 +1,68 @@ +{ inputs, config, lib, pkgs, ... }: +{ + imports = [ + ../modules/global.nix + ../modules + ]; + + config = { + home.pointerCursor = { + package = pkgs.adwaita-icon-theme; + name = "Adwaita"; + size = 24; + x11 = { + enable = true; + defaultCursor = "Adwaita"; + }; + }; + }; + config.modules = { + global = { + wayland = true; + + extraPackages = with pkgs; [ + wmenu + cmatrix + wayneko + pfetch + nicotine-plus + mpc + ]; + }; + + colors.mountain.enable = true; + # colors.tomorrow.enable = true; + gpg.enable = true; + + pass = { + enable = true; + key = "B5200ABFBD213FC9C17C6DB91291CBBCF3B9F225"; + }; + + foot.enable = true; + + neovim = { + enable = true; + }; + + sway = { + enable = true; + terminal = "foot"; + }; + + i3status = { + enable = true; + wireless = true; + battery = true; + }; + + qutebrowser = { + enable = true; + }; + + mako.enable = true; + neovide.enable = true; + zsh.enable = true; + tofi.enable = true; + }; +} |