mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
28 lines
402 B
Nix
28 lines
402 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./minimal.nix
|
|
];
|
|
xdg = {
|
|
enable = true;
|
|
autostart.enable = true;
|
|
userDirs = {
|
|
enable = true;
|
|
createDirectories = false;
|
|
desktop = null;
|
|
documents = null;
|
|
download = null;
|
|
music = null;
|
|
pictures = null;
|
|
publicShare = null;
|
|
templates = null;
|
|
videos = null;
|
|
};
|
|
};
|
|
}
|