22 lines
424 B
Nix
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 "en";
|
|
|
|
monitor = lib.mkForce [
|
|
"DP-3, 3840x2160, 0x0, 1.5"
|
|
"DP-4, 2560x1440, 2560x0, 1"
|
|
",preferred,auto,1"
|
|
];
|
|
};
|
|
}
|
|
|