23 lines
415 B
Nix
23 lines
415 B
Nix
{ shellConfig, ... }:
|
|
let
|
|
username = "xenia";
|
|
homeDirectory = "/home/${username}";
|
|
in
|
|
{
|
|
imports = [
|
|
shellConfig
|
|
../../home
|
|
];
|
|
home = {
|
|
inherit username homeDirectory;
|
|
stateVersion = "22.11";
|
|
};
|
|
programs.home-manager.enable = true;
|
|
xdg.configFile."hypr/display.conf".text = ''
|
|
misc {
|
|
vrr = 2
|
|
}
|
|
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
|
|
'';
|
|
}
|