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