This commit is contained in:
@@ -32,18 +32,32 @@
|
|||||||
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
docker = nixpkgs.lib.nixosSystem {
|
docker = nixpkgs.lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
|
||||||
./hosts/docker/configuration.nix
|
# 🔧 create custom pkgs with overlay
|
||||||
./common/hardware-configuration.nix
|
pkgs = import nixpkgs {
|
||||||
home-manager.nixosModules.home-manager {
|
inherit system;
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
overlays = [
|
||||||
home-manager.users.nixos = import ./common/home.nix;
|
(final: prev: {
|
||||||
}
|
docker = prev.docker_29;
|
||||||
];
|
docker_cli = prev.docker_29;
|
||||||
};
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
modules = [
|
||||||
|
./hosts/docker/configuration.nix
|
||||||
|
./common/hardware-configuration.nix
|
||||||
|
|
||||||
|
home-manager.nixosModules.home-manager {
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.nixos = import ./common/home.nix;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
kuma = nixpkgs.lib.nixosSystem {
|
kuma = nixpkgs.lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
|
|||||||
Reference in New Issue
Block a user