further home manager migrations

feature/clan.lol
Ingolf Wagner 2023-12-15 08:31:31 +01:00
parent b601c55718
commit d8601a39dc
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
7 changed files with 36 additions and 19 deletions

View File

@ -1185,18 +1185,16 @@
},
"private_assets": {
"locked": {
"dirtyRev": "ee1b2c870d19e0ed1fe15f8501499e4561ec55b2-dirty",
"dirtyShortRev": "ee1b2c8-dirty",
"lastModified": 1699629396,
"narHash": "sha256-SfrvKUU31pytn5IHUqH1tXt2jqM4EMdeDOR5xxHO6B8=",
"ref": "main",
"rev": "ee1b2c870d19e0ed1fe15f8501499e4561ec55b2",
"revCount": 17,
"narHash": "sha256-IPSyCKFKk6y/lEpzZKd5YiQuzZRqZKBqDS8/EyJXdHU=",
"type": "git",
"url": "ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git"
"url": "file:///home/palo/dev/nixos/nixos-private-assets"
},
"original": {
"ref": "main",
"type": "git",
"url": "ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git"
"url": "file:///home/palo/dev/nixos/nixos-private-assets"
}
},
"retiolum": {

View File

@ -42,8 +42,8 @@
inputs.nixpkgs.follows = "nixpkgs";
};
private_assets = {
#url = "git+file:///home/palo/dev/nixos/nixos-private-assets";
url = "git+ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git?ref=main";
url = "git+file:///home/palo/dev/nixos/nixos-private-assets";
#url = "git+ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git?ref=main";
flake = true;
};
retiolum = {

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
];