omniflake/home/lisa.nix
2024-12-03 23:35:38 +01:00

27 lines
362 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
programs.home-manager.enable = true;
services.dropbox.enable = true;
home.packages = with pkgs; [
chromium
drawing
dropbox
hunspell
hunspellDicts.de_DE
hunspellDicts.en_US
hyphen
libreoffice
libsecret
vlc
xournalpp
zathura
];
imports = [
./fonts.nix
];
}