formatted the code with alejandra

This commit is contained in:
2024-03-03 02:11:14 +05:30
parent 0528e06873
commit ef89207879
34 changed files with 1035 additions and 976 deletions

View File

@ -1,7 +1,7 @@
{ username, ... }: {
{username, ...}: {
virtualisation = {
docker.enable = true;
};
users.users.${username}.extraGroups = [ "docker" ];
users.users.${username}.extraGroups = ["docker"];
}

View File

@ -1,9 +1,13 @@
{ pkgs, username, ... }: {
{
pkgs,
username,
...
}: {
virtualisation = {
libvirtd.enable = true;
};
users.users.${username}.extraGroups = [ "libvirtd" ];
users.users.${username}.extraGroups = ["libvirtd"];
environment.systemPackages = with pkgs; [
virt-manager

View File

@ -1,4 +1,4 @@
{ ... }: {
{...}: {
virtualisation = {
waydroid.enable = true;
};