diff options
| author | Alexander Kassouni <alex@kassouni.net> | 2026-07-14 22:45:47 -0700 |
|---|---|---|
| committer | Alexander Kassouni <alex@kassouni.net> | 2026-07-14 22:45:47 -0700 |
| commit | 23ba623e405d0aa8d554274aacd019d7a015aa9d (patch) | |
| tree | fec751fc63de4ec026d04144c30ce95d8dba80ad /users/kassouni/home.nix | |
X11 is so back
Diffstat (limited to 'users/kassouni/home.nix')
| -rw-r--r-- | users/kassouni/home.nix | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/users/kassouni/home.nix b/users/kassouni/home.nix new file mode 100644 index 0000000..f268413 --- /dev/null +++ b/users/kassouni/home.nix @@ -0,0 +1,61 @@ +{ + config, + lib, + pkgs, + ... +}: +{ + imports = [ + ./neovim.nix + ./fuzzel.nix + ./ssh.nix + ./ayu.nix + ./git.nix + ./ghostty.nix + ./theme.nix + ./firefox.nix + ./cursor.nix + ./sway.nix + ./waybar.nix + ./scripts + ]; + + home.sessionVariables = { + "TEST_VAR" = "asdf"; + }; + + home.packages = with pkgs; [ + btop + wget + tree + nerd-fonts.blex-mono + ripgrep + curl + bat + lsd + yazi + claude-code + tldr + curl + _1password-gui + opencode + spotify + prismlauncher + ]; + + programs.fzf = { + enable = true; + enableBashIntegration = true; + }; + + services.syncthing.enable = true; + + programs.bash.enable = true; + + programs.direnv = { + enable = true; + enableBashIntegration = true; + }; + + home.stateVersion = "25.05"; +} |
