2023-08-31 12:22:29 +01:00
|
|
|
{ user, shellConfig, ... }:
|
|
|
|
let homeDirectory = "/home/${user}";
|
|
|
|
in {
|
|
|
|
imports = [ shellConfig ../../home ];
|
2023-07-13 12:41:00 +01:00
|
|
|
home = {
|
2023-08-31 12:22:29 +01:00
|
|
|
inherit homeDirectory;
|
|
|
|
username = user;
|
2023-07-13 12:41:00 +01:00
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
2023-07-24 13:27:05 +01:00
|
|
|
programs.home-manager.enable = true;
|
2023-09-04 08:53:41 +01:00
|
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
2023-08-28 09:43:36 +01:00
|
|
|
misc {
|
|
|
|
vrr = 2
|
|
|
|
}
|
2023-08-28 09:24:23 +01:00
|
|
|
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
|
|
|
|
'';
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|