2023-05-17 17:10:18 +01:00
|
|
|
{...}: {
|
2023-05-31 10:54:57 +01:00
|
|
|
imports = [../work.nix ../desktop/hyprland.nix];
|
2023-05-16 09:13:59 +01:00
|
|
|
home.username = "elitherl";
|
|
|
|
home.homeDirectory = "/home/elitherl";
|
|
|
|
home.stateVersion = "22.11";
|
2023-05-31 10:54:57 +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-31 10:54:57 +01:00
|
|
|
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"
|
|
|
|
"network"
|
|
|
|
"bluetooth"
|
|
|
|
"backlight"
|
|
|
|
"battery"
|
|
|
|
"battery#bat2"
|
|
|
|
"tray"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-05-16 09:13:59 +01:00
|
|
|
}
|