1
0
Fork 0

import the regular way, fixing error: attribute 'age' missing

This commit is contained in:
kiara Grouwstra 2025-03-17 14:23:29 +01:00
parent e3a7cdde96
commit 3e2c83435d
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -1,9 +1,3 @@
{
inputs,
config,
pkgs,
...
}:
{
fediversityVm = {
vmId = 201;
@ -21,10 +15,9 @@
};
};
# nixos.module = {
# imports = [
# ./fedipanel.nix
# ];
# };
nixos.module = import ./fedipanel.nix { inherit inputs config pkgs; };
nixos.module = {
imports = [
./fedipanel.nix
];
};
}