Nixos-Configuration/modules/flake/toplevel.nix
Jermeiah S 7b7bcac73a
All checks were successful
/ test (push) Successful in 35s
partial implementation of terranix
2025-06-20 13:10:49 -04:00

18 lines
391 B
Nix

# Top-level flake glue to get our configuration working
{ inputs, ... }:
{
imports = [
inputs.nixos-unified.flakeModules.default
inputs.nixos-unified.flakeModules.autoWire
];
perSystem =
{ self', pkgs, ... }:
{
# For 'nix fmt'
formatter = pkgs.nixpkgs-fmt;
# Enables 'nix run' to activate.
packages.default = self'.packages.activate;
};
}