2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-05-24 07:31:31 +01:00
|
|
|
imports = [../personal.nix ../desktop/hyprland.nix];
|
2023-05-16 09:13:59 +01:00
|
|
|
home.username = "xenia";
|
|
|
|
home.homeDirectory = "/home/xenia";
|
|
|
|
home.stateVersion = "22.11";
|
2023-05-28 15:12:46 +01:00
|
|
|
home.packages = with pkgs; [prismlauncher nomachine-client];
|
2023-05-16 09:13:59 +01:00
|
|
|
|
2023-05-26 08:02:20 +01:00
|
|
|
programs.fish.shellAbbrs.hypr = "exec Hyprland";
|
2023-06-02 12:21:51 +01:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-05-16 09:13:59 +01:00
|
|
|
}
|