blob: 18763ea181a3da4a18366ca376bacbb929fc4799 (
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
 | { inputs, pkgs, ... }:
{
  home = {
    username = "compromyse";
    homeDirectory = "/home/compromyse";
  };
  home.packages = with pkgs; [
    wget
    aria2
    tmux
    fzf
    fd
    ripgrep
    unzip
    zip
    imv
    mpv
    firefox
    chromium
    spotify
    obsidian
    pcmanfm
    obs-studio
    wl-clipboard
    git-lfs
    slides
    calibre
    kdePackages.okular
  ];
  programs = {
    direnv = {
      enable = true;
      enableBashIntegration = true;
      nix-direnv.enable = true;
    };
    bash.enable = true;
  };
  imports = (map (path: ../../config/${path}) [
    "bash.nix"
    "dotfiles.nix"
    "git"
    "emacs"
    "nvim"
    # "qtile"
    # "plasma"
    # "labwc"
    # "sway"
    "dwl.nix"
    "themes.nix"
    "waybar"
    "way-displays"
    "swaylock"
    "dunst"
    "alacritty"
    # "spotify-player"
  ]);
  home.stateVersion = "23.11";
}
 |