nixos/system/Northstar.nix

10 lines
248 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";
wayland.windowManager.hyprland.settings.monitor = [ "eDP-1,preferred,auto,1.25" ];
};
system.stateVersion = "23.05";
}