nixos/machines/Vanguard/xenia.nix

35 lines
749 B
Nix
Raw Normal View History

{...}: {
imports = [
../../home/personal.nix
../../home/gui
../../home/desktop/sway.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"];
"modules-center" = ["clock"];
"modules-right" = [
"cpu"
"memory"
"temperature"
"pulseaudio"
"bluetooth"
"network"
"backlight"
"battery"
"tray"
];
};
}