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

11
lancom.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
{
# temp hack in config
systemd.tpm2.enable = false;
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
})
];
}