summaryrefslogtreecommitdiff
path: root/hosts/oracle/home.nix
blob: b758d415944f5a1c173421977b48ffdecc852579 (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
{ config, pkgs, ... }:

{
  home.username = "shubh";
  home.homeDirectory = "/home/shubh";

  # You should not change this value, even if you update Home Manager. If you do
  # want to update the value, then make sure to first check the Home Manager
  # release notes.
  home.stateVersion = "23.05";

  home.packages = with pkgs; [
    git
    unzip
    wget
    gnupg
    neovim
    file
    pinentry
    wl-clipboard
    pass
    tmux
    fzf
    firefox
    brave
    libreoffice-qt
    input-fonts
    (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
  ];

  imports = [
    ../../modules/common.nix
  ];

  services.gpg-agent = {                          
    enable = true;
    pinentryFlavor = "qt";
  };

  xdg = {
    userDirs = {
      enable = true;
      desktop = "\$HOME/desktop";
      documents = "\$HOME/docs";
      download = "\$HOME/downloads";
      pictures = "\$HOME/pics";
      music = "\$HOME/music";
      videos = "\$HOME/vids";
    };
  };
}