mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
fix: Removed the Template
and Public
home folders
This commit is contained in:
parent
7425d285d2
commit
f2c47ba4fe
2 changed files with 14 additions and 0 deletions
|
@ -31,6 +31,7 @@ in {
|
||||||
../modules/git.nix
|
../modules/git.nix
|
||||||
../modules/wezterm.nix
|
../modules/wezterm.nix
|
||||||
../modules/urxvt.nix
|
../modules/urxvt.nix
|
||||||
|
../modules/xdg.nix
|
||||||
../modules/vim.nix
|
../modules/vim.nix
|
||||||
../modules/zsh.nix
|
../modules/zsh.nix
|
||||||
];
|
];
|
||||||
|
|
13
modules/xdg.nix
Normal file
13
modules/xdg.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
xdg = {
|
||||||
|
userDirs = {
|
||||||
|
enable = true;
|
||||||
|
templates = null;
|
||||||
|
publicShare = null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue