Added comma.nix

This commit is contained in:
Random936
2025-05-02 12:16:11 -07:00
parent e6b920dee2
commit 741e2ab222
3 changed files with 32 additions and 1 deletions
+7 -1
View File
@@ -12,9 +12,14 @@
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nix-darwin, home-manager, ... } @ inputs: {
outputs = { self, nixpkgs, nix-darwin, home-manager, nix-index-database, ... } @ inputs: {
# Nixos Configurations
@@ -126,6 +131,7 @@
pkgs = nixpkgs.legacyPackages."aarch64-darwin";
modules = [
./home/darwin.nix
./home/modules/comma.nix
];
};
};