sdlfkj
This commit is contained in:
parent
112274943f
commit
e1b6a09032
3 changed files with 24 additions and 0 deletions
6
modules/home/caem/core/default.nix
Normal file
6
modules/home/caem/core/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = lib.getModuleImports ./.;
|
||||||
|
}
|
||||||
|
|
15
modules/home/caem/core/zsh.nix
Normal file
15
modules/home/caem/core/zsh.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -42,6 +42,9 @@
|
||||||
]);
|
]);
|
||||||
|
|
||||||
environment.persistence."/nix/persist" = {
|
environment.persistence."/nix/persist" = {
|
||||||
|
directories = [
|
||||||
|
"/var/lib/AccountsService"
|
||||||
|
];
|
||||||
users."${username}" = {
|
users."${username}" = {
|
||||||
directories = [
|
directories = [
|
||||||
".config/dconf"
|
".config/dconf"
|
||||||
|
|
Loading…
Add table
Reference in a new issue