2023-05-17 17:10:18 +01:00
|
|
|
{...}: {
|
2023-05-24 08:44:46 +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-24 08:44:46 +01:00
|
|
|
|
2023-06-06 12:33:57 +01:00
|
|
|
programs.fish.functions.nvsync = ''
|
|
|
|
rsync -avz --filter=':- .gitignore' --exclude='.git*'\
|
|
|
|
--delete-during --delete-excluded\
|
|
|
|
$HOME/.config/nvim/ heimdall003.jet.uk:.config/nvim
|
|
|
|
rsync -avz --filter=':- .gitignore' --exclude='.git*'\
|
|
|
|
--delete-during --delete-excluded\
|
|
|
|
$HOME/.config/nvim/ freia:.config/nvim
|
|
|
|
'';
|
|
|
|
|
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 08:44:46 +01:00
|
|
|
programs.waybar = {
|
|
|
|
settings = {
|
|
|
|
main = {
|
|
|
|
"include" = [
|
|
|
|
"~/.config/waybar/modules.json"
|
|
|
|
"~/.config/waybar/layout.json"
|
|
|
|
];
|
|
|
|
"output" = "HDMI-A-1";
|
2023-05-31 09:46:34 +01:00
|
|
|
"modules-left" = ["wlr/workspaces"];
|
|
|
|
"modules-center" = ["clock"];
|
|
|
|
"modules-right" = [
|
|
|
|
"cpu"
|
|
|
|
"memory"
|
|
|
|
"temperature"
|
|
|
|
"pulseaudio"
|
|
|
|
"network"
|
|
|
|
"backlight"
|
|
|
|
"battery"
|
|
|
|
"battery#bat2"
|
|
|
|
"tray"
|
|
|
|
];
|
2023-06-05 17:12:26 +01:00
|
|
|
"wlr/workspaces" = {"format-icons" = {"5" = "";};};
|
2023-05-24 08:44:46 +01:00
|
|
|
};
|
|
|
|
alt = {
|
2023-06-01 13:59:16 +01:00
|
|
|
"include" = [
|
|
|
|
"~/.config/waybar/modules.json"
|
|
|
|
"~/.config/waybar/layout.json"
|
|
|
|
];
|
2023-05-24 08:44:46 +01:00
|
|
|
"output" = "DP-1";
|
2023-06-01 16:14:43 +01:00
|
|
|
"modules-left" = [];
|
|
|
|
"modules-center" = ["wlr/workspaces"];
|
2023-05-31 09:46:34 +01:00
|
|
|
"modules-right" = [];
|
2023-06-05 17:12:26 +01:00
|
|
|
"wlr/workspaces" = {"format-icons" = {"5" = "";};};
|
2023-05-24 08:44:46 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-05-16 09:13:59 +01:00
|
|
|
}
|