21 lines
555 B
Nix
21 lines
555 B
Nix
{ ... }: {
|
|
users.users.miifox = {
|
|
createHome = true;
|
|
description = "Miifox";
|
|
group = "users";
|
|
home = "/home/miifox";
|
|
isNormalUser = true;
|
|
uid = 1001;
|
|
};
|
|
home-manager.users.miifox = import ../home-manager/miifox.nix;
|
|
systemd.slices."user-1001".sliceConfig = {
|
|
CPUQuota = "100%";
|
|
MemoryHigh = "1G";
|
|
MemoryMax = "1.1G";
|
|
};
|
|
services.postgresql.ensureDatabases = [ "miifox" ];
|
|
services.postgresql.ensureUsers = [{
|
|
name = "miifox";
|
|
ensurePermissions = { "DATABASE miifox" = "ALL PRIVILEGES"; };
|
|
}];
|
|
}
|