31 lines
492 B
Nix
31 lines
492 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./minimal.nix
|
|
|
|
./modules/devel.nix
|
|
./modules/firefox.nix
|
|
./modules/fonts.nix
|
|
./modules/foot.nix
|
|
./modules/gpg.nix
|
|
./modules/media.nix
|
|
./modules/niri.nix
|
|
./modules/password-store.nix
|
|
./modules/user-dirs.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
anki-bin
|
|
appimage-run
|
|
drawing
|
|
keepassxc
|
|
libnotify
|
|
usbutils
|
|
wl-clipboard
|
|
yubioath-flutter
|
|
zathura
|
|
];
|
|
|
|
services.syncthing.enable = true;
|
|
}
|