2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
2024-01-09 14:10:05 +08:00
|
|
|
cfg = config.users;
|
2025-01-13 11:52:09 +08:00
|
|
|
in
|
|
|
|
{
|
2024-01-09 14:10:05 +08:00
|
|
|
options.users.home.persistApp = {
|
|
|
|
files = mkOption {
|
2025-01-13 11:52:09 +08:00
|
|
|
type =
|
|
|
|
with types;
|
|
|
|
listOf (oneOf [
|
|
|
|
str
|
|
|
|
(attrsOf str)
|
|
|
|
]);
|
2024-01-09 14:10:05 +08:00
|
|
|
default = [ ];
|
|
|
|
};
|
|
|
|
directories = mkOption {
|
2025-01-13 11:52:09 +08:00
|
|
|
type =
|
|
|
|
with types;
|
|
|
|
listOf (oneOf [
|
|
|
|
str
|
|
|
|
(attrsOf str)
|
|
|
|
]);
|
2024-01-09 14:10:05 +08:00
|
|
|
default = [ ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
users.profiles.app = {
|
|
|
|
uid = 5800;
|
|
|
|
description = "Insecure Applications";
|
2024-01-29 00:19:57 +08:00
|
|
|
picture = ../picture/app.png;
|
2024-01-09 14:10:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
# extra persistence specific to the app user
|
|
|
|
environment.persistence."/nix/persist".users.app = cfg.home.persistApp;
|
|
|
|
};
|
|
|
|
}
|