nixos/hosts/lilith-pc/default.nix
2025-03-14 16:15:08 +01:00

22 lines
424 B
Nix

{ config, lib, ...}: {
system.stateVersion = "24.11";
desktop.enable = true;
gaming.enable = true;
nfs.client.enable = true;
auto_styling.enable = true;
home-manager.users."lilith".wayland.windowManager.hyprland.settings = {
input.kb_layout = lib.mkForce "us";
monitor = lib.mkForce [
"DP-3, 3840x2160, 0x0, 1.5"
"DP-4, 2560x1440, 2560x0, 1"
",preferred,auto,1"
];
};
}