Move all the individual stored impermanence folders to specific files
This commit is contained in:
parent
57201099fb
commit
dbd5ea69cd
19 changed files with 178 additions and 160 deletions
|
@ -7,6 +7,7 @@
|
|||
./eza
|
||||
./fastfetch
|
||||
./git
|
||||
./lazygit
|
||||
./ncmpcpp
|
||||
./neovim
|
||||
./nh
|
||||
|
|
|
@ -7,10 +7,8 @@
|
|||
extraConfig.safe.directory = "/etc/nixos";
|
||||
};
|
||||
|
||||
programs.lazygit.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gnupg
|
||||
git-crypt
|
||||
gnupg
|
||||
];
|
||||
}
|
||||
|
|
5
modules/home/programs/terminal/lazygit/default.nix
Normal file
5
modules/home/programs/terminal/lazygit/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.lazygit.enable = true;
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".local/state/lazygit" ];
|
||||
}
|
|
@ -110,4 +110,6 @@
|
|||
nmap <C-a> :NERDTreeToggleVCS<CR>
|
||||
'';
|
||||
};
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".local/share/nvim/undo" ];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
programs.nix-index.enable = true;
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".cache/nix-index" ];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
|
@ -25,4 +25,6 @@
|
|||
source ${pkgs.zsh-you-should-use}/share/zsh/plugins/you-should-use/you-should-use.plugin.zsh
|
||||
'';
|
||||
};
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".config/zsh" ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue