summaryrefslogtreecommitdiff
path: root/home/home.nix
blob: 0345d256cc28e88605ebc6fb25ab32a6a2bbe311 (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
{ pkgs, inputs, ... }:

{
  imports = [
    # Window Managers
    ./wayland/hyprland/hyprland.nix
    ./wayland/niri/niri.nix
    # Wayland specific programs
    ./wayland/waybar.nix
    ./wayland/noctalia.nix
    # Editors
    ./editors/nixvim.nix
    ./editors/helix.nix
    # Programs
    ./terminals/foot.nix
    ./shells/fish.nix
    ./shells/starship.nix
    ./programs/spicetify.nix
    ./programs/nixcord.nix
    ./programs/yazi.nix
    # Other
    ./xdg.nix
];

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

  home.packages = with pkgs; [
    grim
    slurp
    satty

    imagemagick
    exiftool
    brave
    ripgrep
    nix-index
    qbittorrent-enhanced
    fastfetch
    foot
    wofi
    inputs.prismlauncher.packages.${pkgs.stdenv.hostPlatform.system}.prismlauncher
    # prismlauncher
    inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww
    bitwarden-desktop
    yt-dlp_git
    ffmpeg
    mpv
    gimp
    obs-cmd
    obs-studio
    mako
    thunderbird
    nautilus
    xfce.thunar
    xfce.thunar-archive-plugin
    xfce.thunar-volman
    magic-wormhole
    obsidian
    alsa-utils
  ];

  programs.btop.enable = true;

  programs.git = {
    enable = true;
    settings = {
      user.name = "adikro";
      user.email = "adikro@disroot.org";
      init.defaultBranch = "main";
    };
  };

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

  qt = {
    enable = true;
    style.name = "Breeze-Dark";
  };

  programs.home-manager.enable = true;
}