37 lines
1 KiB
Nix
37 lines
1 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".source = ./hypr/hyprpaper.conf;
|
|
wayland.windowManager.hyprland.extraConfig = builtins.readFile ./hypr/hyprland.conf;
|
|
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"
|
|
];
|
|
"wlr/workspaces" = {"format-icons" = {"5" = "";};};
|
|
};
|
|
};
|
|
};
|
|
}
|