forked from mirrors_public/oddlama_nix-config
feat: allow defining impermanence dirs from home manager configs
This commit is contained in:
parent
0eb6ac95e4
commit
9f2a34d83b
5 changed files with 173 additions and 64 deletions
|
@ -4,21 +4,33 @@
|
|||
./sway.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
firefox
|
||||
thunderbird
|
||||
signal-desktop
|
||||
chromium
|
||||
zathura
|
||||
feh
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
discord
|
||||
firefox
|
||||
thunderbird
|
||||
signal-desktop
|
||||
chromium
|
||||
zathura
|
||||
feh
|
||||
];
|
||||
|
||||
# TODO VP9 hardware video decoding blocklisted
|
||||
# TODO gpg switch to sk
|
||||
# TODO VP9 hardware video decoding blocklisted
|
||||
# TODO gpg switch to sk
|
||||
|
||||
home.shellAliases = {
|
||||
p = "cd ~/projects";
|
||||
zf = "zathura --fork";
|
||||
shellAliases = {
|
||||
p = "cd ~/projects";
|
||||
zf = "zathura --fork";
|
||||
};
|
||||
|
||||
persistence."/persist".directories = [
|
||||
".config/discord" # Bad Discord! BAD! Saves its state in .config tststs
|
||||
".config/Signal" # L take, electron.
|
||||
"projects"
|
||||
];
|
||||
|
||||
persistence."/state".directories = [
|
||||
"Downloads"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue