mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
fd7c23055f
Signed-off-by: Hadi <hadi@example.com>
39 lines
868 B
Nix
39 lines
868 B
Nix
{config, ...}: {
|
|
xdg.userDirs = {
|
|
enable = true;
|
|
setSessionVariables = true;
|
|
createDirectories = true;
|
|
desktop = "${config.home.homeDirectory}/Desktop";
|
|
download = "${config.home.homeDirectory}/Downloads";
|
|
pictures = "${config.home.homeDirectory}/Pictures";
|
|
music = null;
|
|
documents = null;
|
|
videos = null;
|
|
templates = null;
|
|
publicShare = null;
|
|
};
|
|
|
|
programs.superfile = {
|
|
enable = true;
|
|
firstUseCheck = false;
|
|
pinnedFolders = [
|
|
{
|
|
name = "dev";
|
|
location = "/home/hadrien/dev";
|
|
}
|
|
{
|
|
name = "nixos";
|
|
location = "/home/hadrien/.config/nixos";
|
|
}
|
|
{
|
|
name = "trash";
|
|
location = "/home/hadrien/.local/share/Trash/files";
|
|
}
|
|
];
|
|
settings = {
|
|
transparent_background = true;
|
|
ignore_missing_fields = true;
|
|
};
|
|
};
|
|
}
|