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-19 14:50:00 +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-05-24 08:37:09 +01:00
|
|
|
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
|
|
|
preload = /etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
|
|
|
wallpaper = ,/etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
|
|
|
'';
|
2023-05-24 07:25:31 +01:00
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
|
|
source=./common.conf
|
|
|
|
misc {
|
|
|
|
vrr = 2
|
|
|
|
}
|
2023-05-24 08:21:51 +01:00
|
|
|
monitor=DP-2,highrr,auto,1
|
2023-05-25 09:06:56 +01:00
|
|
|
|
2023-05-25 12:28:36 +01:00
|
|
|
exec-once = steam & discord & signal-desktop & qbittorrent
|
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
|
|
|
}
|