Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

home dirs


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (May 22, 2026, 10:53 PM +0200) 75e6c136 2c919779

+28
+28
home/cli.nix
··· 1 1 { 2 2 pkgs, 3 + config, 3 4 ... 4 5 }: 5 6 ··· 92 93 }; 93 94 94 95 home.sessionVariables.SHELL = "zsh"; 96 + 97 + xdg.userDirs = { 98 + enable = true; 99 + createDirectories = true; 100 + setSessionVariables = true; 101 + desktop = "${config.home.homeDirectory}/desktop"; 102 + download = "${config.home.homeDirectory}/desktop/downloads"; 103 + 104 + music = "${config.home.homeDirectory}/media/music"; 105 + videos = "${config.home.homeDirectory}/media/videos"; 106 + pictures = "${config.home.homeDirectory}/media/pictures"; 107 + 108 + documents = "${config.home.homeDirectory}/files/documents"; 109 + publicShare = "${config.home.homeDirectory}/files/documents/public"; 110 + templates = "${config.home.homeDirectory}/files/templates"; 111 + projects = "${config.home.homeDirectory}/files/projects"; 112 + extraConfig = { 113 + SOURCE = "${config.home.homeDirectory}/files/projects"; 114 + }; 115 + }; 116 + 117 + home.file = { 118 + "files/projects/repos/forge.strawmelonjuice.com/.keep".text = ""; 119 + "files/projects/repos/codeberg.org/.keep".text = ""; 120 + "files/projects/repos/tangled.sh/.keep".text = ""; 121 + "files/projects/repos/github.com/.keep".text = ""; 122 + }; 95 123 96 124 }