Add ansible and playbook to trigger upgrade
Some checks failed
Run nix flake check / flake-check (push) Failing after 27m26s
Periodic flake update / flake-update (push) Successful in 1m24s

This commit is contained in:
2025-02-07 00:28:05 +01:00
parent fbcb81291b
commit 002f934c70
4 changed files with 60 additions and 0 deletions

View File

@@ -32,6 +32,14 @@
config.allowUnfree = true;
};
};
allSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems =
f: nixpkgs.lib.genAttrs allSystems (system: f { pkgs = import nixpkgs { inherit system; }; });
in
{
nixosConfigurations = {
@@ -297,5 +305,16 @@
];
};
};
devShells = forAllSystems (
{ pkgs }:
{
default = pkgs.mkShell {
packages = with pkgs; [
ansible
python3
];
};
}
);
};
}