summaryrefslogtreecommitdiff
path: root/users/kassouni/home.nix
blob: 6242863f6b9654c55300046d4f1c33b92308b712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  config,
  lib,
  pkgs,
  ...
}:
{
  imports = [
    ./neovim.nix
    ./claude.nix
    ./rofi.nix
    ./music.nix
    ./fonts.nix
    ./slippi.nix
    ./ssh.nix
    ./rip.nix
    ./ayu/ayu-dark.nix
    ./git.nix
    ./ghostty.nix
    ./theme.nix
    ./firefox.nix
    ./cursor.nix
    ./bash.nix
    ./xbindkeys.nix
    ./scripts
    ./palette
  ];

  xmonad-config = {
    launcher = "rofi -show drun -show-icons";
    terminal = "ghostty";
    wallpaper = pkgs.fetchurl {
      url = "https://i.redd.it/p5flk9uzzxxz.jpg";
      sha256 = "1qcl6yh6l24sz3qprj3iyzinj3lyh3c426i6zwambwg816yg3bxs";
    };
    xmobar.font = config.theme.font;
  };

  home.sessionVariables = {
    "TEST_VAR" = "asdf";
  };

  home.packages = with pkgs; [
    dolphin-emu
    cmus
    btop
    wget
    tree
    nerd-fonts.blex-mono
    ripgrep
    curl
    bat
    lsd
    yazi
    tldr
    curl
    _1password-gui
    spotify
    prismlauncher
  ];

  programs.fzf = {
    enable = true;
    enableBashIntegration = true;
  };

  services.picom = {
    enable = true;
    # modesetting has no TearFree option, so the compositor has to do the
    # syncing. home-manager defaults vSync to false, which tears.
    backend = "glx";
    vSync = true;
  };

  services.syncthing.enable = true;

  programs.direnv = {
    enable = true;
    enableBashIntegration = true;
  };

  home.stateVersion = "25.05";
}