added incus to laptop
This commit is contained in:
parent
d333548e62
commit
5870348b72
|
@ -14,6 +14,7 @@
|
|||
./k8s.nix
|
||||
./tail.nix
|
||||
./pmb.nix
|
||||
./incus.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
@ -37,6 +38,7 @@
|
|||
# Networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.hostName = "idea";
|
||||
networking.nftables.enable = true;
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh.enable = true;
|
||||
|
|
9
laptop/incus.nix
Normal file
9
laptop/incus.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
virtualisation.incus.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
incus
|
||||
lxc
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue