added incus to laptop

This commit is contained in:
Geir Okkenhaug Jerstad 2024-06-18 12:12:36 +02:00
parent d333548e62
commit 5870348b72
2 changed files with 13 additions and 2 deletions

View file

@ -13,7 +13,8 @@
./fonts.nix
./k8s.nix
./tail.nix
./pmb.nix
./pmb.nix
./incus.nix
];
# Bootloader.
@ -37,7 +38,8 @@
# 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
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
virtualisation.incus.enable = true;
environment.systemPackages = with pkgs; [
incus
lxc
];
}