nixos/home/Vanguard/xenia.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [../personal.nix ../desktop/hyprland.nix];
home.username = "xenia";
home.homeDirectory = "/home/xenia";
home.stateVersion = "22.11";
home.packages = with pkgs; [
prismlauncher
nomachine-client
];
2023-05-24 07:25:31 +01:00
xdg.configFile."hypr/hyprpaper.conf".source = ../desktop/config/hypr/hyprpaper-Vanguard.conf;
wayland.windowManager.hyprland.extraConfig = ''
source=./common.conf
2023-05-24 07:25:31 +01:00
misc {
vrr = 2
}
2023-05-24 07:25:31 +01:00
monitor=DP-1,highrr,auto,1
monitor=HDMI-A-1,highres,auto,2
monitor=HDMI-A-2,highrr,auto,1
monitor=,auto,auto,1
2023-05-24 07:25:31 +01:00
exec-once = hyprpaper
exec-once = waybar
'';
programs.waybar = {
style = ''
@import 'common.css';
'';
settings = {
main = {
"include" = [
"~/.config/waybar/modules.json"
"~/.config/waybar/layout.json"
];
"modules-left" = ["custom/launcher" "cpu" "memory" "temperature"];
"modules-center" = ["wlr/workspaces"];
"modules-right" = [
"pulseaudio"
"bluetooth"
"network"
"backlight"
"battery"
"battery#bat2"
"clock"
"tray"
"custom/power"
];
};
};
};
}