nixos/home/Vanguard/xenia.nix

47 lines
1.2 KiB
Nix

{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];
programs.fish.shellAbbrs.hypr = "exec Hyprland";
xdg.configFile."hypr/hyprpaper.conf".text = ''
preload = /mnt/secondary/syncthing/pictures/Wallpapers/Landscapes/IMG_9509.JPG
wallpaper = ,/mnt/secondary/syncthing/pictures/Wallpapers/Landscapes/IMG_9509.JPG
'';
wayland.windowManager.hyprland.extraConfig = ''
source=./common.conf
misc {
vrr = 2
}
monitor=DP-2,highrr,auto,1
exec-once = steam & discord & signal-desktop & qbittorrent
'';
programs.waybar = {
settings = {
main = {
"include" = [
"~/.config/waybar/modules.json"
"~/.config/waybar/layout.json"
];
"modules-left" = ["wlr/workspaces"];
"modules-center" = ["clock"];
"modules-right" = [
"cpu"
"memory"
"temperature"
"pulseaudio"
"bluetooth"
"network"
"backlight"
"battery"
"battery#bat2"
"tray"
];
};
};
};
}