tangled
alpha
login
or
join now
dunkirk.sh
/
dots
3
fork
atom
Kieran's opinionated (and probably slightly dumb) nix config
3
fork
atom
overview
issues
pulls
pipelines
feat: automount usb disks
Kieran Klukas
2 years ago
b026c940
70215bad
+22
3 changed files
expand all
collapse all
unified
split
home-manager
dots
hyprland.conf
home.nix
moonlark
configuration.nix
+1
home-manager/dots/hyprland.conf
···
14
14
exec-once = wluma
15
15
exec-once = waybar
16
16
exec-once = hypridle
17
17
+
exec-once = udiskie
17
18
18
19
exec-once=[workspace 8 silent] slack
19
20
exec-once=[workspace 9 silent] spotify
+16
home-manager/home.nix
···
90
90
enable = true;
91
91
};
92
92
93
93
+
services.udiskie = {
94
94
+
enable = true;
95
95
+
settings = {
96
96
+
program_options = {
97
97
+
udisks_version = 2;
98
98
+
tray = false;
99
99
+
};
100
100
+
notifications = {
101
101
+
device_unmounted = false;
102
102
+
device_added = -1;
103
103
+
device_removed = -1;
104
104
+
device_mounted = -1;
105
105
+
};
106
106
+
};
107
107
+
};
108
108
+
93
109
# git config
94
110
programs.git = {
95
111
enable = true;
+5
moonlark/configuration.nix
···
95
95
];
96
96
})
97
97
pkgs.github-desktop
98
98
+
pkgs.udiskie
98
99
];
99
100
100
101
services.gnome.gnome-keyring.enable = true;
···
203
204
PasswordAuthentication = false;
204
205
};
205
206
};
207
207
+
208
208
+
services.devmon.enable = true;
209
209
+
services.gvfs.enable = true;
210
210
+
services.udisks2.enable = true;
206
211
207
212
# Requires at least 5.16 for working wi-fi and bluetooth.
208
213
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89