16 lines
326 B
Nix
16 lines
326 B
Nix
{...}: {
|
|
imports = [
|
|
../../home/personal.nix
|
|
../../home/gui
|
|
../../home/desktop/swayfx.nix
|
|
];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
|
|
wayland.windowManager.sway.config = {
|
|
output.HDMI-A-2.scale = "2.0";
|
|
startup = [{command = "steam";}];
|
|
};
|
|
}
|