mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
18 lines
394 B
Nix
18 lines
394 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
imports = [ ../home.nix ];
|
|
|
|
home.stateVersion = "23.11";
|
|
myConfig.de.theme = "light";
|
|
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"eDP-1,1920x1080@60,0x0,1"
|
|
",preferred,auto,1,mirror,eDP-1"
|
|
];
|
|
|
|
home.packages = [
|
|
(lib.hiPrio (
|
|
pkgs.writeScriptBin "lock-suspend" "loginctl lock-session && sleep 0.5 && systemctl suspend"
|
|
))
|
|
];
|
|
}
|