added incus to laptop
This commit is contained in:
parent
d333548e62
commit
5870348b72
|
@ -13,7 +13,8 @@
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./k8s.nix
|
./k8s.nix
|
||||||
./tail.nix
|
./tail.nix
|
||||||
./pmb.nix
|
./pmb.nix
|
||||||
|
./incus.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
@ -37,7 +38,8 @@
|
||||||
# Networking
|
# Networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
networking.hostName = "idea";
|
networking.hostName = "idea";
|
||||||
|
networking.nftables.enable = true;
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh.enable = true;
|
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