Compare commits

...

2 Commits

3 changed files with 17 additions and 3 deletions

6
flake.lock generated
View File

@@ -385,11 +385,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1751741127, "lastModified": 1751943650,
"narHash": "sha256-t75Shs76NgxjZSgvvZZ9qOmz5zuBE8buUaYD28BMTxg=", "narHash": "sha256-7orTnNqkGGru8Je6Un6mq1T8YVVU/O5kyW4+f9C1mZQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "29e290002bfff26af1db6f64d070698019460302", "rev": "88983d4b665fb491861005137ce2b11a9f89f203",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -48,6 +48,7 @@ in {
./hm/cava.nix # Audio visualizer config ./hm/cava.nix # Audio visualizer config
./hm/fastfetch.nix # Fastfetch config ./hm/fastfetch.nix # Fastfetch config
./hm/eza.nix # Eza config (ls alternative) ./hm/eza.nix # Eza config (ls alternative)
./hm/user-dirs.nix # XDG User directories config
]; ];
}; };

13
modules/hm/user-dirs.nix Normal file
View File

@@ -0,0 +1,13 @@
{
xdg.userDirs = {
enable = true;
desktop = "$HOME/Nextcloud/Home-sync/Desktop";
documents = "$HOME/Nextcloud/Home-sync/Documents";
download = "$HOME/Nextcloud/Home-sync/Downloads";
music = "$HOME/Nextcloud/Home-sync/Music";
pictures = "$HOME/Nextcloud/Home-sync/Pictures";
publicShare = "$HOME/Nextcloud/Home-sync/Public";
templates = "$HOME/Nextcloud/Home-sync/Templates";
videos = "$HOME/Nextcloud/Home-sync/Videos";
};
}