summaryrefslogtreecommitdiff
path: root/nixpkgs/kusanagi.nix
blob: 17b28a794f5707029672e0bd2ab33c9ea9056c78 (plain) (blame)
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
{ pkgs, ... }:
let
  nurSrc = builtins.fetchTarball {
    url =
      "https://github.com/nix-community/NUR/archive/687ed97c4379e9ad1346fc673e3e0fc88210de14.tar.gz";
    sha256 = "sha256:0pxljc5bzcwb8c43qmm5l49p03snq7piqnshglqday2dw6cfcd6l";
  };
in {
  imports = [ ./common.nix ./icewm.nix ];

  programs.bash.profileExtra = ''
    function mklink {
      if [ ! -L "$2" ]; then
        ln -sfv "$1" "$2"
      fi
    }

    mklink /Z/lx/Downloads ~/Downloads

    mklink /Z/lx/app/openssh ~/.ssh
    mkdir -p ~/.gnupg
    mklink /Z/lx/app/gnupg/pubring.kbx ~/.gnupg/pubring.kbx
    mklink /Z/lx/app/gnupg/trustdb.gpg ~/.gnupg/trustdb.gpg
    mklink /Z/lx/app/gnupg/private-keys-v1.d ~/.gnupg/private-keys-v1.d
    mklink /Z/lx/app/cargo ~/.cargo

    mklink /Z/lx/app/arduino/Arduino ~/Arduino
    mklink /Z/lx/app/arduino/.arduino15 ~/.arduino15

    mkdir -p ~/.local/share/Steam
    mklink /Z/lx/app/steam/.steam ~/.steam
    mklink /Z/lx/app/steam/Steam ~/.local/share/Steam
  '';

  programs.bash.shellAliases.z = "cd /Z/lx";

  nixpkgs.config.packageOverrides = pkgs: {
    nur = import nurSrc { inherit pkgs; };
  };

  home.file = {
    ".config/qutebrowser/quickmarks".source = ../qutebrowser/quickmarks;
    ".gtk-bookmarks".text = ''
      file:///Z/lx lx
    '';
  };

  programs.firefox.enable = true;
  programs.firefox.profiles.default = {
    isDefault = true;
    extensions = with pkgs.nur.repos.rycee.firefox-addons; [
      ublock-origin
      privacy-badger
      startpage-private-search
    ];
    settings = {
      "extensions.autoDisableScopes" = 0;
      "extensions.enabledScopes" = 15;
    };
  };

  home.homeDirectory = "/home/lx";
  xdg.userDirs.download = "/home/lx/Downloads";

  gtk.gtk3.bookmarks = [ "file:///Z/lx" ];

  services.gpg-agent.enable = true;
  services.gpg-agent.enableSshSupport = false;
  services.gpg-agent.pinentryFlavor = "qt";
  services.gpg-agent.extraConfig = "no-allow-external-cache";

  programs.keychain = {
    enable = true;
    enableBashIntegration = true;
    keys = [ "/Z/lx/app/openssh/id_ed25519" ];
  };

  services.syncthing.extraOptions = [ "--home=/Z/lx/app/syncthing" ];
}