mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
Executable
+27
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
+12
-21
@@ -7,7 +7,6 @@
|
|||||||
let
|
let
|
||||||
# Paths
|
# Paths
|
||||||
beetsPath = "${xlib.dirs.wsl-storage}/beets/linux";
|
beetsPath = "${xlib.dirs.wsl-storage}/beets/linux";
|
||||||
#sshPath = "${xlib.dirs.wsl-storage}/ssh/${config.xlib.device.hostname}";
|
|
||||||
musicPath = "${config.home.homeDirectory}/External/Music";
|
musicPath = "${config.home.homeDirectory}/External/Music";
|
||||||
externalPath = "${xlib.dirs.wsl-home}";
|
externalPath = "${xlib.dirs.wsl-home}";
|
||||||
in
|
in
|
||||||
@@ -24,18 +23,18 @@ in
|
|||||||
target = "beets";
|
target = "beets";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# userDirs = {
|
userDirs = {
|
||||||
# enable = false;
|
enable = true;
|
||||||
# createDirectories = false;
|
createDirectories = false;
|
||||||
# desktop = null;
|
desktop = null;
|
||||||
# documents = null;
|
documents = null;
|
||||||
# download = null;
|
download = null;
|
||||||
# music = null;
|
music = null;
|
||||||
# pictures = null;
|
pictures = null;
|
||||||
# publicShare = null;
|
publicShare = null;
|
||||||
# templates = null;
|
templates = null;
|
||||||
# videos = null;
|
videos = null;
|
||||||
# };
|
};
|
||||||
};
|
};
|
||||||
home = {
|
home = {
|
||||||
file = {
|
file = {
|
||||||
@@ -48,13 +47,5 @@ in
|
|||||||
target = "${config.home.homeDirectory}/Music";
|
target = "${config.home.homeDirectory}/Music";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# pointerCursor = {
|
|
||||||
# enable = true;
|
|
||||||
# x11.enable = true;
|
|
||||||
# gtk.enable = true;
|
|
||||||
# size = 24;
|
|
||||||
# name = "Qogir";
|
|
||||||
# package = pkgs.qogir-icon-theme;
|
|
||||||
# };
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user