Fix on obsidian pkgs

This commit is contained in:
Laurent Gueret
2026-01-30 19:49:51 +01:00
parent 33cc5a5c18
commit 246f7e07ee
3 changed files with 2 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@
) (nixpkgs.lib.toList pkg.meta.license) ) (nixpkgs.lib.toList pkg.meta.license)
|| builtins.elem (nixpkgs.lib.getName pkg) [ || builtins.elem (nixpkgs.lib.getName pkg) [
"nvidia-x11" "nvidia-x11"
"obsidian"
]; ];
nixpkgs.overlays = [ nixpkgs.overlays = [
+1
View File
@@ -18,6 +18,7 @@
homeDirectory = "/home/alistreaza"; homeDirectory = "/home/alistreaza";
}; };
# Apps shell
programs.git = { programs.git = {
extraConfig = { extraConfig = {
user = { user = {
-2
View File
@@ -13,12 +13,10 @@ in
enable = mkEnableOption "Obsidian options"; enable = mkEnableOption "Obsidian options";
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
obsidian obsidian
]; ];
}; };
} }