initial snapshot

This commit is contained in:
Chloe Bethel 2025-02-10 11:47:09 +00:00
commit 24b41c4faf
16 changed files with 452 additions and 0 deletions

14
minimal.nix Normal file
View file

@ -0,0 +1,14 @@
{
lib,
pkgs,
modulesPath,
...
}:
{
imports = [
#(modulesPath + "/profiles/minimal.nix")
#(modulesPath + "/profiles/perlless.nix")
];
hardware.enableAllHardware = lib.mkForce false;
}