tangled
alpha
login
or
join now
quasigod.xyz
/
nixconfig
9
fork
atom
My NixOS and Home Manager configurations
9
fork
atom
overview
issues
pulls
pipelines
xdg autostart set up
quasigod.xyz
6 months ago
fc1c95ba
70aebd3d
verified
This commit was signed with the committer's
known signature
.
quasigod.xyz
SSH Key Fingerprint:
SHA256:IYQIQqk4Il5k+VDa+O4RM4mqCqVtyRilM/eLPbx2jjc=
+12
-11
1 changed file
expand all
collapse all
unified
split
modules
toplevel
xdg.nix
+12
-11
modules/toplevel/xdg.nix
···
3
3
home =
4
4
{ config, ... }:
5
5
{
6
6
-
xdg = {
7
7
-
enable = true;
8
8
-
autostart.enable = true;
9
9
-
autostart.readOnly = true;
10
10
-
};
6
6
+
xdg.enable = true;
11
7
home.sessionVariables = {
12
8
# cleaning up ~
13
9
ANDROID_USER_HOME = "${config.xdg.dataHome}/android";
···
38
34
portal.enable = true;
39
35
terminal-exec.enable = true;
40
36
};
41
41
-
home.xdg.userDirs = {
42
42
-
enable = true;
43
43
-
createDirectories = true;
44
44
-
desktop = null;
45
45
-
templates = null;
46
46
-
music = null;
37
37
+
home.xdg = {
38
38
+
autostart.enable = true;
39
39
+
autostart.readOnly = true;
40
40
+
userDirs = {
41
41
+
enable = true;
42
42
+
createDirectories = true;
43
43
+
desktop = null;
44
44
+
templates = null;
45
45
+
music = null;
46
46
+
publicShare = null;
47
47
+
};
47
48
};
48
49
};
49
50
};