2023-08-05 18:06:21 +01:00
|
|
|
{ shellConfig, ... }:
|
|
|
|
let
|
2023-07-16 17:35:36 +01:00
|
|
|
username = "xenia";
|
|
|
|
homeDirectory = "/home/${username}";
|
2023-08-05 18:06:21 +01:00
|
|
|
in
|
|
|
|
{
|
2023-07-13 12:41:00 +01:00
|
|
|
imports = [
|
2023-07-19 08:57:48 +01:00
|
|
|
shellConfig
|
2023-08-28 09:24:23 +01:00
|
|
|
../../home
|
2023-07-13 12:41:00 +01:00
|
|
|
];
|
|
|
|
home = {
|
2023-07-16 17:35:36 +01:00
|
|
|
inherit username homeDirectory;
|
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-08-28 09:24:23 +01:00
|
|
|
xdg.configFile."hypr/display.conf".text = ''
|
|
|
|
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
|
|
|
|
'';
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|