Evie Litherland-Smith
52ff1c36a3
Move root user home-config into home/default.nix so that it's used by all Removed personal/work specific things from root user
40 lines
1,012 B
Nix
40 lines
1,012 B
Nix
{...}: {
|
|
imports = [../work.nix ../desktop/hyprland.nix];
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
home.stateVersion = "22.11";
|
|
|
|
programs.fish.shellAbbrs.hypr = "exec Hyprland";
|
|
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
|
preload = /etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
|
wallpaper = ,/etc/nixos/config/wallpaper/images_dark/1920x1080.png
|
|
'';
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
source=./common.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"
|
|
"network"
|
|
"bluetooth"
|
|
"backlight"
|
|
"battery"
|
|
"battery#bat2"
|
|
"tray"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|