mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-10-30 17:32:09 +01:00
11 lines
139 B
Nix
11 lines
139 B
Nix
|
|
# enabled system services
|
||
|
|
{ config, lib, ... }:
|
||
|
|
let
|
||
|
|
secrets = config.sops.secrets;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
my.system = {
|
||
|
|
podman.enable = true;
|
||
|
|
};
|
||
|
|
}
|