chore: cleanup redundant module declarations
Some checks failed
/ deploy (push) Blocked by required conditions
/ check (push) Has been cancelled

This commit is contained in:
Jermeiah S 2025-07-01 17:51:59 -04:00
parent c4dadd9f25
commit 8ffa756741
No known key found for this signature in database
9 changed files with 8 additions and 16 deletions

View file

@ -1,10 +1,17 @@
{ flake, pkgs, ... }:
{
flake,
pkgs,
modulesPath,
...
}:
{
imports =
with builtins;
map (fn: ./${fn}) (filter (fn: fn != "default.nix") (attrNames (readDir ./.)))
++ [
flake.inputs.disko.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
zramSwap.enable = true;
nixpkgs.hostPlatform = "x86_64-linux";