nixos/home/default.nix
Evie Litherland-Smith 98177d5119 Add remmina VNC/RDP client
Move program launching binds into submap with silent launch for faster
startup

Add current hyprland submap to waybar
2023-08-23 09:31:52 +01:00

25 lines
389 B
Nix

{ pkgs, wallpapers, ... }:
{
imports = [
./git
./ssh
./tui
./tmux
./hyprland
./alacritty
./firefox
./zathura
./emacs
];
home.packages = with pkgs; [
bitwarden
remmina
signal-desktop
libreoffice
zotero
];
programs.home-manager.enable = true;
xdg.configFile."wallpapers/default.jpg".source = wallpapers.outputs.default;
}