nixos/system/Northstar.nix
Evie Litherland-Smith dea57f6db7 Move Vanguard packages from home.packages to environment.systemPackages
Restructure the other machine specific files for style consistency,
no actual changes otherwise
2025-02-08 06:32:03 +00:00

11 lines
335 B
Nix

{ username, ... }:
{
imports = [ ./laptop.nix ];
networking.wg-quick.interfaces.wg0.configFile = "/etc/wireguard/gb-mnc-wg-001.conf";
system.stateVersion = "23.05";
home-manager.users.${username} = {
home.stateVersion = "23.05";
wayland.windowManager.hyprland.settings.monitor = [ "eDP-1,preferred,auto,1.25" ];
};
}