system/podman: have module available

This commit is contained in:
Felix Buehler 2022-12-05 22:53:04 +01:00
parent 19520eae7f
commit 7e9276152a
7 changed files with 56 additions and 6 deletions

View file

@ -2,14 +2,13 @@
{
imports = [
./boot.nix
./hardware-configuration.nix
./disks.nix
./hardware-configuration.nix
./network.nix
./syncthing.nix
./services.nix
../../legacy/modules/docker.nix
./syncthing.nix
./system.nix
../../legacy/modules/networkdecrypt.nix
../../legacy/modules/nix.nix
];
networking.hostName = "newton";

View file

@ -0,0 +1,10 @@
# enabled system services
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.system = {
podman.enable = true;
};
}