pantheon/nix/profiles/nixos/common.nix

9 lines
197 B
Nix

{
flake.profiles.nixos.common =
{ hostName, ... }:
{
boot.loader.systemd-boot.enable = true;
system.stateVersion = "25.05";
networking = { inherit hostName; };
};
}