feat(nixos): add common nixos profile; move hostspec config

This commit is contained in:
Mohammad Rafiq 2025-07-06 05:40:06 +08:00
parent 7f6c65320a
commit 8f9f400f92
No known key found for this signature in database
3 changed files with 18 additions and 14 deletions

View file

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