mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
b5f27c6ed6
Former-commit-id: 1dc5190c43
18 lines
294 B
Nix
18 lines
294 B
Nix
{
|
|
imports = [
|
|
./jellyfin.nix
|
|
./jellyseerr.nix
|
|
./prowlarr.nix
|
|
./radarr.nix
|
|
./sonarr.nix
|
|
./transmission.nix
|
|
];
|
|
|
|
users.users.jackflix = {
|
|
isNormalUser = true;
|
|
home = "/home/jackflix";
|
|
description = "My own netflix";
|
|
extraGroups = [ "docker" ];
|
|
};
|
|
}
|