initial commit

This commit is contained in:
2024-10-16 19:11:15 +02:00
commit 6da0038f5d
39 changed files with 5141 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ config, lib, inputs, pkgs, ... }:
{
networking.hostName = "patate-douce";
networking.wireless.enable = true;
networking.networkmanager.enable = false;
environment.systemPackages = with pkgs; [
acpi
]
}

View File

@ -0,0 +1,6 @@
{ config, lib, inputs, pkgs, ... }:
{
virtualisation.virtualbox.guest.enable = true;
}