This commit is contained in:
Till 2024-12-03 23:34:37 +01:00
parent 0034b1dd93
commit 22c9b65ae9
7 changed files with 70 additions and 19 deletions

27
home/lisa.nix Normal file
View file

@ -0,0 +1,27 @@
{ 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
];
}