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;
|
||||
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 = {
|
||||
|
@ -93,11 +101,14 @@
|
|||
# Standard system utilities. Many of these are within ../shared.nix.
|
||||
# The bulk of user-specific packages should go within the home-manager configuration.
|
||||
environment.systemPackages = with pkgs; [
|
||||
blender
|
||||
cider
|
||||
discord
|
||||
fractal
|
||||
(prismlauncher.override {
|
||||
jdks = [ pkgs.jdk23 ];
|
||||
})
|
||||
tuba
|
||||
vscode
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue