chore: cleanup redundant module declarations
All checks were successful
/ check (push) Successful in 1m23s
/ deploy (push) Has been skipped

This commit is contained in:
Jermeiah S 2025-07-01 17:51:59 -04:00
parent c4dadd9f25
commit 7dde5410e4
No known key found for this signature in database
9 changed files with 8 additions and 17 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";