feat(nixos): add machine module with virtualisation and usb options
This commit is contained in:
parent
e097d3e688
commit
3bffa8760e
5 changed files with 81 additions and 54 deletions
|
@ -2,8 +2,15 @@ let
|
|||
testCfg =
|
||||
{ hostName, ... }:
|
||||
{
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
networking = { inherit hostName; };
|
||||
machine = {
|
||||
bluetooth.enable = true;
|
||||
usb.automount = true;
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
distrobox.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue