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