Add podman

This commit is contained in:
2024-02-27 04:43:43 +01:00
parent 839754a8fb
commit 1584a9baa1
4 changed files with 56 additions and 1 deletions

18
flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
description = "Torjus nixos config flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.prismo = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
./podman.nix
];
};
};
}