summaryrefslogtreecommitdiff
path: root/hosts/desktop/home.nix
blob: 71580b75bf793e34f66865c06efe003724bb2af9 (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
{ pkgs, inputs, ... }:
{
  imports = [
    ../../modules/hm/default.nix
];

  home.username = "adam";
  home.homeDirectory = "/home/adam";
  home.stateVersion = "25.05";

  home.packages = with pkgs; [
    librewolf
    gavin-bc
    qalculate-gtk
    onlyoffice-desktopeditors
    file
    heroic
    protonvpn-gui
    evolution
    imagemagick
    kdePackages.kdenlive
    syncplay
    bottles
    ncdu
    prismlauncher
    inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww
    grim
    slurp
    satty
    veracrypt
    brave
    qbittorrent-enhanced
    foot
    bitwarden-desktop
    yt-dlp_git
    ffmpeg
    mpv
    gimp
    thunderbird
    obsidian
  ];

  services.easyeffects.enable = true;

  services.cliphist = {
    enable = true;
    systemdTargets = [ "graphical-session.target" ];
  };

  gtk = {
    enable = true;
    colorScheme = "dark";
    theme = {
      name = "Adwaita-dark";
      package = pkgs.gnome-themes-extra;
    };
  };

  qt = {
    enable = true;
    style.name = "adwaita-dark";
    style.package = pkgs.adwaita-qt;
    platformTheme.name = "kde";
  };
}