Evie Litherland-Smith
23f74093d8
Remove work.nix variants of expressions Better use of defaults across all machines Set TERM env to xterm-256color for ssh connections by default
23 lines
368 B
Nix
23 lines
368 B
Nix
{ pkgs, wallpapers, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./git
|
|
./ssh
|
|
./tui
|
|
./hyprland
|
|
./alacritty
|
|
./firefox
|
|
./zathura
|
|
./emacs/server.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
bitwarden
|
|
signal-desktop
|
|
libreoffice
|
|
zotero
|
|
];
|
|
programs.home-manager.enable = true;
|
|
xdg.configFile."wallpaper.jpg".source = wallpapers.outputs.default;
|
|
}
|