diff options
Diffstat (limited to 'modules/home-manager')
| -rw-r--r-- | modules/home-manager/default.nix | 8 | ||||
| -rw-r--r-- | modules/home-manager/dev.nix | 32 |
2 files changed, 39 insertions, 1 deletions
diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 9580c84..4ab83fc 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -5,10 +5,16 @@ ./git.nix ./zsh.nix ./tmux.nix - ./neovim.nix + ./neovim/default.nix ./zathura.nix ./vscode.nix ./gpg.nix ./nixcord.nix + ./foot.nix + ./dev.nix + ./sway.nix + ./waybar.nix + ./firefox.nix + ./spicetify.nix ]; } diff --git a/modules/home-manager/dev.nix b/modules/home-manager/dev.nix new file mode 100644 index 0000000..db8513d --- /dev/null +++ b/modules/home-manager/dev.nix @@ -0,0 +1,32 @@ +{ config, lib, pkgs, ... }: + +{ + + options.dev.enable = lib.mkEnableOption "Development tools"; + config = lib.mkIf config.dev.enable { + zsh.enable = true; + git.enable = true; + neovim.enable = true; + tmux.enable = true; + gpg.enable = true; + + home.packages = with pkgs; [ + zoxide + + fzf + ffmpeg + imagemagick + + gcc + maven + cmake + jdk + go + lua + nodejs + tailwindcss + + nerd-fonts.symbols-only + ]; + }; +} |
