Compare commits
2 commits
bd419d0a46
...
3b20db2f7a
Author | SHA1 | Date | |
---|---|---|---|
3b20db2f7a | |||
392e6ae7ec |
2 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -53,9 +54,9 @@
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
};
|
};
|
||||||
systemd.user.tmpfiles.rules = [
|
systemd.user.tmpfiles.rules = [
|
||||||
"d %h/.cache/nvim/undo-files 0700 - - mM:1w -"
|
"d /persistent${config.xdg.cacheHome}/nvim/undo-files 0700 - - mM:1w -"
|
||||||
"d %h/.cache/nvim/swap-files 0700 - - mM:1w -"
|
"d /persistent${config.xdg.cacheHome}/nvim/swap-files 0700 - - mM:1w -"
|
||||||
"d %h/.cache/nvim/backup-files 0700 - - mM:1w -"
|
"d /persistent${config.xdg.cacheHome}/nvim/backup-files 0700 - - mM:1w -"
|
||||||
];
|
];
|
||||||
xdg.configFile.nvim = {
|
xdg.configFile.nvim = {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
(with pkgs.vscode-extensions; [
|
(with pkgs.vscode-extensions; [
|
||||||
fill-labs.dependi
|
fill-labs.dependi
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
|
mechatroner.rainbow-csv
|
||||||
mkhl.direnv
|
mkhl.direnv
|
||||||
pkief.material-icon-theme
|
pkief.material-icon-theme
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
|
|
Loading…
Reference in a new issue