1
Fork 0
satellite/home/adrielus/tethys.nix

23 lines
536 B
Nix
Raw Normal View History

2022-12-28 13:27:18 +01:00
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
2023-01-10 02:38:06 +01:00
./global
./features/desktop/xmonad.nix
./features/desktop/common/discord.nix
./features/desktop/common/zathura.nix
./features/desktop/common/firefox.nix
];
home.packages = with pkgs; [
signal-desktop # Signal client
zoom-us # Zoom client 🤮
obsidian # Notes
peek # GIF recorder
vlc # Video player
gimp # Image editing
libreoffice # Free office suite
# obs-studio # video recorder
# lmms # music software
2022-12-28 13:27:18 +01:00
];
}