cyclone: Allow Syncthing to run as user
This commit is contained in:
parent
861890de4d
commit
9c25e0792f
1 changed files with 12 additions and 1 deletions
|
@ -32,7 +32,15 @@
|
||||||
|
|
||||||
tailscale.enable = true;
|
tailscale.enable = true;
|
||||||
vscode-server.enable = true;
|
vscode-server.enable = true;
|
||||||
syncthing.enable = true;
|
|
||||||
|
# Ensure Syncthing has the ability to write
|
||||||
|
# within the user's home directory.
|
||||||
|
syncthing = {
|
||||||
|
enable = true;
|
||||||
|
user = "spotlight";
|
||||||
|
group = "users";
|
||||||
|
dataDir = "/home/spotlight";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
@ -93,11 +101,14 @@
|
||||||
# Standard system utilities. Many of these are within ../shared.nix.
|
# Standard system utilities. Many of these are within ../shared.nix.
|
||||||
# The bulk of user-specific packages should go within the home-manager configuration.
|
# The bulk of user-specific packages should go within the home-manager configuration.
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
blender
|
||||||
cider
|
cider
|
||||||
discord
|
discord
|
||||||
|
fractal
|
||||||
(prismlauncher.override {
|
(prismlauncher.override {
|
||||||
jdks = [ pkgs.jdk23 ];
|
jdks = [ pkgs.jdk23 ];
|
||||||
})
|
})
|
||||||
|
tuba
|
||||||
vscode
|
vscode
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue