feat(comma): add comma and nix-index-database

This commit is contained in:
Mohammad Rafiq 2025-03-24 00:26:29 +08:00
parent 439a54a35c
commit cbdeb114b0
No known key found for this signature in database
3 changed files with 38 additions and 11 deletions

View file

@ -40,17 +40,17 @@
specialArgs = args;
modules = [
./systems/mellinoe.nix
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true; # inherit the nixpkgs and its config
useUserPackages = true;
extraSpecialArgs = args;
users.rafiq.imports = [
./users/rafiq.nix
];
};
}
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true; # inherit the nixpkgs and its config
useUserPackages = true;
extraSpecialArgs = args;
users.rafiq.imports = [
./users/rafiq.nix
];
};
}
];
};
};
@ -77,5 +77,7 @@
disko.url = "github:nix-community/disko/latest";
disko.inputs.nixpkgs.follows = "nixpkgs";
impermanence.url = "github:nix-community/impermanence";
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
};
}