From 23ba623e405d0aa8d554274aacd019d7a015aa9d Mon Sep 17 00:00:00 2001 From: Alexander Kassouni Date: Tue, 14 Jul 2026 22:45:47 -0700 Subject: X11 is so back --- users/kassouni/home.nix | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 users/kassouni/home.nix (limited to 'users/kassouni/home.nix') 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"; +} -- cgit v1.3.1