mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
19 lines
357 B
Nix
19 lines
357 B
Nix
{ self, ... }:
|
|
{
|
|
imports = [
|
|
"${self}/users/home-manager.nix"
|
|
../user.nix
|
|
];
|
|
|
|
home-manager.users.seb = {
|
|
imports = [ ../home.nix ];
|
|
|
|
home.stateVersion = "23.11";
|
|
myConfig.theme = "light";
|
|
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"eDP-1,1920x1080@60,0x0,1"
|
|
",preferred,auto,1,mirror,eDP-1"
|
|
];
|
|
};
|
|
}
|