mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-22 11:05:48 +02:00
@@ -1,6 +1,8 @@
|
||||
{
|
||||
pkgs,
|
||||
pkgs-unstable,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
@@ -38,5 +40,7 @@
|
||||
smassh # typing test, 10fastfinger like
|
||||
];
|
||||
|
||||
home.persistence."/persist".directories = [".config/gh" ".config/gh-dash"];
|
||||
home.persistence."/persist" = lib.mkIf (config.var.impermanenceEnabled or false) {
|
||||
directories = [".config/gh" ".config/gh-dash"];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15,7 +15,9 @@
|
||||
COLORTERM = "truecolor";
|
||||
MANPAGER = "bat -l man -p";
|
||||
};
|
||||
persistence."/persist".files = [".zsh_history"];
|
||||
persistence."/persist" = lib.mkIf (config.var.impermanenceEnabled or false) {
|
||||
files = [".zsh_history"];
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
c = config.lib.stylix.colors;
|
||||
@@ -11,7 +12,9 @@ in {
|
||||
spotatui
|
||||
];
|
||||
|
||||
home.persistence."/persist".directories = [".config/spotatui" ".config/spotify"];
|
||||
home.persistence."/persist" = lib.mkIf (config.var.impermanenceEnabled or false) {
|
||||
directories = [".config/spotatui" ".config/spotify"];
|
||||
};
|
||||
|
||||
home.file.".config/spotatui/config.yml".text = ''
|
||||
keybindings:
|
||||
|
||||
Reference in New Issue
Block a user