37 lines
763 B
Nix
37 lines
763 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.hyprland.extraConfig = ''
|
|
# source=./common.conf
|
|
# monitor=HDMI-A-2,preferred,auto,2.00
|
|
# '';
|
|
wayland.windowManager.sway.config = {
|
|
output.HDMI-A-2.scale = "2.0";
|
|
startup = [{command = "steam";}];
|
|
};
|
|
programs.waybar.settings.main = {
|
|
"modules-left" = [
|
|
"sway/workspaces"
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
];
|
|
"modules-center" = ["clock"];
|
|
"modules-right" = [
|
|
"pulseaudio"
|
|
"bluetooth"
|
|
"network"
|
|
"backlight"
|
|
"battery"
|
|
"tray"
|
|
];
|
|
};
|
|
}
|