added podman and shortcut for nixos rebuilds

This commit is contained in:
2026-08-16 11:16:11 -07:00
parent da513216a3
commit 8f61297dcb
8 changed files with 186 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ inputs, ... }:
{
nix = {
@@ -20,4 +20,13 @@
};
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
(final: prev: {
unstable = import inputs.nixpkgs-unstable {
inherit (prev) system;
inherit (prev) config;
};
})
];
}