nixos/machines/J0162/elitherl.nix

32 lines
705 B
Nix
Raw Normal View History

{pkgs, ...}: {
imports = [../../home/work.nix ../../home/gui ../../home/desktop/picom.nix];
home.username = "elitherl";
home.homeDirectory = "/home/elitherl";
home.stateVersion = "22.11";
home.packages = with pkgs; [
zotero
openfortivpn
nomachine-client
teams-for-linux
zoom-us
];
wayland.windowManager.hyprland.extraConfig = ''source=./common.conf '';
programs.waybar.settings.main = {
"modules-left" = ["wlr/workspaces"];
"modules-center" = ["clock"];
"modules-right" = [
"cpu"
"memory"
"temperature"
"pulseaudio"
"network"
"bluetooth"
"backlight"
"battery"
"battery#bat2"
"tray"
];
};
}