home lab init
This commit is contained in:
commit
7278922625
65 changed files with 27336 additions and 0 deletions
15
nixos/templates/docker.nix
Normal file
15
nixos/templates/docker.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, modulesPath, lib, ... }:
|
||||
|
||||
{
|
||||
# Pull in all the shared settings from configuration.nix
|
||||
imports = [
|
||||
./base.nix
|
||||
];
|
||||
|
||||
config = {
|
||||
environment.systemPackages = with pkgs; [
|
||||
docker
|
||||
docker-compose
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue