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