fix: Removed the Template and Public home folders

This commit is contained in:
Nickiel12 2023-01-26 17:05:26 -08:00
parent 7425d285d2
commit f2c47ba4fe
2 changed files with 14 additions and 0 deletions

View file

@ -31,6 +31,7 @@ in {
../modules/git.nix
../modules/wezterm.nix
../modules/urxvt.nix
../modules/xdg.nix
../modules/vim.nix
../modules/zsh.nix
];

13
modules/xdg.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
xdg = {
userDirs = {
enable = true;
templates = null;
publicShare = null;
};
};
}