Compare commits

..

No commits in common. "e63978da7faad7d1bb613be2cc0ee7c3ed5c0067" and "a1a918193a05daef7236ccffa8b9e36261f23df5" have entirely different histories.

4 changed files with 4 additions and 16 deletions

View file

@ -117,7 +117,6 @@ in
# ../nixosModules/extra/secure_dns.nix
../nixosModules/extra/zram.nix
../nixosModules/extra/leana.nix
../nixosModules/extra/lean-nixos.nix
#
# Extern modules

View file

@ -47,6 +47,7 @@
pkgs.ruler
pkgs.mini-calc
pkgs.zbar
# pdf
pkgs.poppler-utils # pdfseparate, pdfunite
@ -77,6 +78,7 @@
# productivity / media
pkgs.evolution
pkgs.libreoffice
pkgs.minder # mindmap tool
pkgs.calibre
pkgs.digikam
pkgs.nautilus
@ -93,7 +95,9 @@
pkgs.iamb
pkgs.discord # keep the app for video calls
pkgs.signal-desktop
pkgs.tuba # mastodon GUI client
pkgs.emoji-picker-rs
pkgs.telegram-desktop # for archlinux china
# wm utilities
pkgs.xbrightness

View file

@ -9,7 +9,6 @@ let
in
{
home.packages = lib.mkIf cfg.enable [
pkgs.zbar
pkgs.pwgen
pkgs.diceware
];

View file

@ -1,14 +0,0 @@
# disable unused tools on nixos systems (that I don't use)
{
system.tools = {
# build a network of virtual machines? never used this.
nixos-build-vms.enable = false;
# only useful for installer
nixos-generate-config.enable = false;
nixos-install.enable = false;
# interactively show options, just use the repl instead
nixos-option.enable = false;
};
}