summaryrefslogtreecommitdiff
path: root/nix/home/default.nix
blob: 021b64753d721327a1dafd9185ee47eb416b50eb (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{ config, pkgs, inputs, ... }:

{
  imports = [
    inputs.home-manager.nixosModules.home-manager
  ];

  home-manager.users.${config.user} = {

    home.username = config.user;
    home.homeDirectory = config.homePath;

    news.display = "silent";
    fonts.fontconfig.enable = true;
    nixpkgs.config.allowUnfree = true;

    home.packages = with pkgs; [
      # nix
      home-manager
      # c / c++
      clang-tools
      gcc
      gnumake
      nasm
      pkg-config
      # rust
      rustc
      rustfmt
      rust-analyzer
      cargo
      clippy
      # zig
      zig
      zls
      # android
      android-tools
      scrcpy
      # gtk
      adwaita-icon-theme
      orchis-theme
      # media
      ffmpeg
      libaacs
      libavif
      libbluray
      libjxl
      # wayland
      cage
      grimblast
      wl-clipboard
      wl-clip-persist
      wl-mirror
      # gaming
      prismlauncher
      winetricks
      wineWowPackages.staging
      # social
      discord
      element-desktop
      gajim
      # vrchat
      unityhub
      vrc-get
      # rendering
      freealut
      glfw
      glm
      openal
      shaderc
      stb
      vulkan-headers
      vulkan-loader
      vulkan-tools
      vulkan-validation-layers
      # programs
      blueman
      brightnessctl
      easyeffects
      fd
      filezilla
      gimp
      grub2
      imagemagick
      imv
      jq
      libisoburn
      libnotify
      libreoffice-fresh
      mpv
      pavucontrol
      pfetch-rs
      python3
      qbittorrent
      qemu
      rsync
      sassc
      sl
      starship
      thunderbird-latest
      vlc
      yt-dlp
      zathura
    ];

    xdg.configFile = {
      "aacs/keydb.cfg" = {
        source = ../../files/keys/bluray.cfg;
      };
    };

    xdg.dataFile = {
      fonts = {
        source = ../../files/fonts;
        recursive = true;
      };
    };

    xdg.mimeApps = {
      enable = true;
      defaultApplications = {
        # web
        "text/html" = "firefox.desktop";
        "x-scheme-handler/http" = "firefox.desktop";
        "x-scheme-handler/https" = "firefox.desktop";
        "x-scheme-handler/about" = "firefox.desktop";
        "x-scheme-handler/unknown" = "firefox.desktop";

        # images
        "image/png" = "imv.desktop";
        "image/jpeg" = "imv.desktop";
        "image/webp" = "imv.desktop";
        "image/tga" = "imv.desktop";
        "image/bmp" = "imv.desktop";
        "image/gif" = "imv.desktop";

        # audio video
        "video/mp4" = "mpv.desktop";
        "video/x-msvideo" = "mpv.desktop";
        "video/mkv" = "mpv.desktop";
        "video/webm" = "mpv.desktop";
        "audio/mp3" = "mpv.desktop";
        "audio/wav" = "mpv.desktop";

        # other
        "application/pdf" = "org.pwmt.zathura.desktop";
        "x-scheme-handler/mspa" = "unofficial-homestuck-collection.desktop";
        "x-scheme-handler/discord" = "discord.desktop";
      };
    };

    xdg.userDirs = {
      enable = true;
      createDirectories = false;

      desktop = "${config.homePath}/desktop";
      documents = "${config.homePath}/documents";
      download = "${config.homePath}/downloads";
      music = "${config.homePath}/music";
      pictures = "${config.homePath}/pictures";
      publicShare = "${config.homePath}";
      templates = "${config.homePath}";
      videos = "${config.homePath}/videos";
    };

    gtk = {
      enable = true;
      gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
    };

    programs.home-manager.enable = true;

  };
}