added docker and libreoffice

This commit is contained in:
2025-07-04 12:02:04 +02:00
parent 16a0d6d6be
commit 0fb6806dd1
4 changed files with 17 additions and 4 deletions

View File

@@ -12,6 +12,7 @@
./xgd.nix
./hyprland.nix
./rofi.nix
./libreoffice.nix
];
home.username = "lukas";

View File

@@ -13,6 +13,8 @@ in {
gpg.format = "ssh";
gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers";
user.signingkey = "~/.ssh/id_ed25519.pub";
pull.rebase = false;
init.defaultBranch = "master";
};
};
}

View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
let
libreoffice = pkgs.libreoffice;
in {
home.packages = with pkgs; [
libreoffice
hunspell
hunspellDicts.en_US
hunspellDicts.de_DE
];
}