2023-05-16 09:13:59 +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 ];
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-05-16 14:36:05 +01:00
|
|
|
exec-once = hyprpaper
|
|
|
|
exec-once = waybar
|
2023-05-16 09:13:59 +01:00
|
|
|
'';
|
|
|
|
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"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|