summaryrefslogtreecommitdiff
path: root/users/kassouni/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/kassouni/home.nix')
-rw-r--r--users/kassouni/home.nix61
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";
+}