nixos/system/Northstar.nix

9 lines
161 B
Nix
Raw Normal View History

{ username, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [ ./laptop.nix ];
home-manager.users.${username} = {
home.stateVersion = "23.05";
};
system.stateVersion = "23.05";
}