1
Fork 0
This commit is contained in:
caem 2025-01-24 00:14:50 +01:00
parent 112274943f
commit e1b6a09032
Signed by: caem
GPG key ID: 69A830D03203405F
3 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{ lib, ... }:
{
imports = lib.getModuleImports ./.;
}

View file

@ -0,0 +1,15 @@
{ config, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
history.size = 10000;
history.ignoreAllDups = true;
/* Not persisted on purpose */
history.path = "${config.xdg.cacheHome}/zsh_history";
};
}

View file

@ -42,6 +42,9 @@
]);
environment.persistence."/nix/persist" = {
directories = [
"/var/lib/AccountsService"
];
users."${username}" = {
directories = [
".config/dconf"