nixos-flake/hosts/home-workstations.nix

116 lines
2.3 KiB
Nix

{ pkgs, ...}:
{
home.packages = with pkgs; [
calc
conda
dig
ffmpeg
firefox-wayland
fuzzel
fzf
gcc
gnome.nautilus
gnumake
gnupg
gthumb
htop
kanshi
kitty
libnotify # for mako
libreoffice
megatools
mpv
networkmanagerapplet
nodejs # copilot requirement
obsidian
openconnect
owncloud-client
pass
pavucontrol
pinentry-qt
polkit_gnome
pulseaudio
pynitrokey
rpi-imager
sshfs
swaybg
thunderbird
tmux
tree-sitter
unzip
waybar
wdisplays
wl-clipboard
xdg-utils
zathura
];
home.file = {
".config/" = {
source = ../dotfiles/.config;
recursive = true;
};
};
home.file = {
".xkb/" = {
source = ../dotfiles/.xkb;
recursive = true;
};
};
home.file = {
".profile" = {
source = ../dotfiles/.profile;
recursive = true;
};
};
home.file = {
".tmux.conf" = {
source = ../dotfiles/.tmux.conf;
recursive = true;
};
};
wayland.windowManager.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
programs = {
browserpass = {
enable = true;
};
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
services.mako = {
enable = true;
};
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 24;
x11 = {
enable = true;
defaultCursor = "Adwaita";
};
};
gtk = {
enable = true;
theme = {
package = pkgs.nordic;
name = "Nordic";
};
};
home.sessionVariables.GTK_THEME = "Nordic";
xdg = {
mime.enable = true;
mimeApps = {
enable = true;
defaultApplications = {
"text/plain" = "nvim.desktop";
"video/x-matroska" = "mpv.desktop";
};
};
};
}