mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
Cleanup
This commit is contained in:
parent
e285ab3183
commit
9fb4a18ee5
11 changed files with 22 additions and 44 deletions
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.custom.services.actualbudget;
|
||||
in
|
||||
|
|
@ -20,10 +16,12 @@ in
|
|||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
users.groups.actual = { };
|
||||
users.users.actual = {
|
||||
isSystemUser = true;
|
||||
group = "actual";
|
||||
users = {
|
||||
groups.actual = { };
|
||||
users.actual = {
|
||||
isSystemUser = true;
|
||||
group = config.users.groups.actual.name;
|
||||
};
|
||||
};
|
||||
|
||||
services.actual = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue