git: update paths for projects

This commit is contained in:
Christoph Hollizeck 2025-11-17 23:54:36 +01:00
parent 1f635ff6ac
commit dbe87c7bab
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
5 changed files with 97 additions and 89 deletions

View file

@ -50,7 +50,12 @@
};
homeManager.cholli =
{ pkgs, ... }:
{
lib,
osConfig,
pkgs,
...
}:
let
defaultIconFileName = "profile.png";
in
@ -63,9 +68,15 @@
"Music/.keep".text = "";
"Pictures/.keep".text = "";
"Videos/.keep".text = "";
"projects/.keep".text = "";
".face".source = ./${defaultIconFileName};
"Pictures/${defaultIconFileName}".source = ./${defaultIconFileName};
}
// lib.optionalAttrs (osConfig.networking.hostName == "yggdrasil") {
# Some Paths for my main machine
"projects/NixOS/.keep".text = "";
"projects/nix-community/.keep".text = "";
"projects/niri/.keep".text = "";
"work/.keep".text = "";
};
packages = with pkgs; [ graphviz ];