54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{pkgs, ...}: {
|
|
imports = [../personal.nix];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [
|
|
prismlauncher
|
|
nomachine-client
|
|
];
|
|
|
|
xdg.configFile."hypr/hyprpaper.conf".source = ../desktop/config/hypr/hyprpaper-Vanguard.conf;
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
source=./common.conf
|
|
|
|
misc {
|
|
vrr = 2
|
|
}
|
|
|
|
monitor=DP-1,highrr,auto,1
|
|
monitor=HDMI-A-1,highres,auto,2
|
|
monitor=HDMI-A-2,highrr,auto,1
|
|
monitor=,auto,auto,1
|
|
|
|
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"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|