Evie Litherland-Smith
98177d5119
Move program launching binds into submap with silent launch for faster startup Add current hyprland submap to waybar
25 lines
389 B
Nix
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;
|
|
}
|