Nixos-Configuration/configurations/nixos/link-warden-tofu/default.nix
Jermeiah S 7dde5410e4
All checks were successful
/ check (push) Successful in 1m23s
/ deploy (push) Has been skipped
chore: cleanup redundant module declarations
2025-07-01 17:52:26 -04:00

23 lines
300 B
Nix

{
pkgs,
flake,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
networking = {
hostName = "link-warden-tofu";
};
environment.systemPackages = with pkgs; [
cowsay
];
system.stateVersion = "25.05";
}