further home manager migrations

This commit is contained in:
Ingolf Wagner 2023-12-15 08:31:31 +01:00
commit d8601a39dc
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
7 changed files with 36 additions and 19 deletions
nixos

View file

@ -1,13 +1,32 @@
{ pkgs, ... }:
{ config, pkgs, lib, ... }:
with pkgs;
with lib;
{
home.packages = [
bind.dnsutils
nmap
hexyl
config = mkMerge [
{
home.packages = [
bind.dnsutils
nmap
hexyl
units
units
];
}
(mkIf config.gui.enable {
home.packages = [
libreoffice
hunspell
hunspellDicts.de-de
hunspellDicts.en-us
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.es
joplin-desktop
#yt-dlp
];
})
];
}

View file

@ -10,8 +10,6 @@ with lib;
home.packages =
let
# to make copilot work
# jetbrains.pycharm-professional
fhsPyCharm = pkgs.buildFHSUserEnv {

View file

@ -12,7 +12,7 @@ with lib;
gimp
inkscape
imagemagick
sxiv
nsxiv
blender
lightburn
darktable

View file

@ -1,5 +1,7 @@
{ pkgs, lib, config, ... }:
{
home.packages = [ pkgs.sshuttle ];
programs.ssh.enable = true;
programs.ssh.matchBlocks = {
"*" = {

View file

@ -3,7 +3,7 @@
imports = [
../all
./packages.nix
#./packages.nix
./yubikey.nix
];