nixos/home/Vanguard/xenia.nix

49 lines
1.1 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
];
xdg.configFile."hypr/hyprpaper.conf".text = ''
preload = /etc/nixos/config/wallpaper/images_dark/1920x1080.png
wallpaper = ,/etc/nixos/config/wallpaper/images_dark/1920x1080.png
'';
2023-05-24 07:25:31 +01:00
wayland.windowManager.hyprland.extraConfig = ''
source=./common.conf
misc {
vrr = 2
}
monitor=DP-2,highrr,auto,1
2023-05-25 12:28:36 +01:00
exec-once = steam & discord & signal-desktop & qbittorrent
2023-05-24 07:25:31 +01:00
'';
programs.waybar = {
settings = {
main = {
"include" = [
"~/.config/waybar/modules.json"
"~/.config/waybar/layout.json"
];
2023-05-25 09:45:03 +01:00
"modules-left" = ["wlr/workspaces"];
"modules-center" = ["clock"];
2023-05-24 07:25:31 +01:00
"modules-right" = [
2023-05-25 09:45:03 +01:00
"cpu"
"memory"
"temperature"
2023-05-24 07:25:31 +01:00
"pulseaudio"
"bluetooth"
"network"
"backlight"
"battery"
"battery#bat2"
"tray"
];
};
};
};
}