Rename custom module to chvp
This commit is contained in:
parent
da2abefc9a
commit
7ca622b82c
32 changed files with 44 additions and 44 deletions
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/calibre"; type = "cache"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ ... }: {
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".ICAClient"; type = "data"; }
|
||||
];
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
home.packages = with pkgs; [ deluge ];
|
||||
};
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/deluge"; type = "data"; }
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".local/share/direnv"; type = "cache"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.systemLinks = [
|
||||
chvp.zfs.systemLinks = [
|
||||
{ path = "/var/lib/docker"; type = "cache"; }
|
||||
{ path = "/var/lib/docker/volumes"; type = "data"; }
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".dropbox"; type = "cache"; }
|
||||
{ path = "Dropbox"; type = "data"; }
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ type = "data"; path = ".local/share/df_linux"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
home.packages = with pkgs; [ element-desktop ];
|
||||
};
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/Element"; type = "data"; }
|
||||
];
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
})
|
||||
];
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".cache/mozilla"; type = "cache"; }
|
||||
{ path = ".mozilla"; type = "data"; }
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
options.custom.git.email = lib.mkOption {
|
||||
options.chvp.git.email = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "charlotte@vanpetegem.me";
|
||||
example = "charlotte@vanpetegem.me";
|
||||
|
@ -37,7 +37,7 @@
|
|||
key = "charlotte@vanpetegem.me";
|
||||
signByDefault = true;
|
||||
};
|
||||
userEmail = config.custom.git.email;
|
||||
userEmail = config.chvp.git.email;
|
||||
userName = "Charlotte Van Petegem";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
options.custom.gnupg.pinentryFlavor = lib.mkOption {
|
||||
options.chvp.gnupg.pinentryFlavor = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "curses";
|
||||
example = "qt";
|
||||
|
@ -10,7 +10,7 @@
|
|||
'';
|
||||
};
|
||||
|
||||
config.custom.zfs.homeLinks = [
|
||||
config.chvp.zfs.homeLinks = [
|
||||
{ path = ".gnupg/crls.d"; type = "data"; }
|
||||
{ path = ".gnupg/private-keys-v1.d"; type = "data"; }
|
||||
{ path = ".gnupg/pubring.kbx"; type = "data"; }
|
||||
|
@ -25,7 +25,7 @@
|
|||
enable = true;
|
||||
defaultCacheTtl = 7200;
|
||||
maxCacheTtl = 99999;
|
||||
pinentryFlavor = config.custom.gnupg.pinentryFlavor;
|
||||
pinentryFlavor = config.chvp.gnupg.pinentryFlavor;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ let
|
|||
toRecursiveINIBase 1;
|
||||
in
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = "mail"; type = "data"; }
|
||||
{ path = ".local/share/offlineimap"; type = "data"; }
|
||||
{ path = ".local/share/contacts"; type = "data"; }
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ ... }: {
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/Mumble"; type = "data"; }
|
||||
{ path = ".local/share/Mumble"; type = "data"; }
|
||||
];
|
||||
|
|
|
@ -15,7 +15,7 @@ let
|
|||
kotlinls = import ../packages/kotlin-language-server/default.nix { inherit pkgs; };
|
||||
in
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".local/share/nvim"; type = "cache"; }
|
||||
{ path = ".cache/nvim"; type = "cache"; }
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
custom.zfs.systemLinks = [
|
||||
chvp.zfs.systemLinks = [
|
||||
{ path = "/etc/NetworkManager/system-connections"; type = "data"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".cache/nix-index"; type = "cache"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".pki"; type = "cache"; } # Required for eid-mw browser configuration
|
||||
{ path = ".cache/qutebrowser"; type = "cache"; }
|
||||
{ path = ".local/share/qutebrowser"; type = "data"; }
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
};
|
||||
|
||||
# PulseAudio doesn't play nice with symlinks
|
||||
systemd.user.services.pulseaudio.environment = lib.mkIf config.custom.zfs.enable {
|
||||
systemd.user.services.pulseaudio.environment = lib.mkIf config.chvp.zfs.enable {
|
||||
XDG_CONFIG_HOME = "/data/home/charlotte/.config";
|
||||
};
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
imports = [ ./ssh/secret.nix ];
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".ssh/known_hosts"; type = "cache"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
pulseaudio.support32Bit = true;
|
||||
};
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".paradoxlauncher"; type = "data"; }
|
||||
{ path = ".steam"; type = "data"; }
|
||||
{ path = ".local/share/Steam"; type = "data"; }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/syncthing"; type = "data"; }
|
||||
{ path = "sync"; type = "data"; }
|
||||
];
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
home.packages = with pkgs; [ teams ];
|
||||
};
|
||||
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/Microsoft"; type = "data"; }
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ ... }: {
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = "VirtualBox VMs"; type = "data"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = "desktop"; type = "data"; }
|
||||
{ path = "documents"; type = "data"; }
|
||||
{ path = "downloads"; type = "data"; }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".config/0ad"; type = "cache"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
custom.zfs.homeLinks = [
|
||||
chvp.zfs.homeLinks = [
|
||||
{ path = ".local/share/autojump"; type = "cache"; }
|
||||
{ path = ".local/share/zsh"; type = "cache"; }
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue