nixos/home/Vanguard/xenia.nix

36 lines
975 B
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".source = ./hypr/hyprpaper.conf;
wayland.windowManager.hyprland.extraConfig = builtins.readFile ./hypr/hyprland.conf;
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"
];
"wlr/workspaces" = {"format-icons" = {"5" = "󰓓";};};
2023-05-24 07:25:31 +01:00
};
};
};
}