better aliases

This commit is contained in:
Jana Dönszelmann 2025-09-26 10:36:35 -07:00
parent 816c61985d
commit c89bd50f8e
No known key found for this signature in database
4 changed files with 150 additions and 31 deletions

View file

@ -33,6 +33,14 @@
};
rahul-config.url = "github:jdonszelmann/nix-config";
cosmic-manager = {
url = "github:HeitorAugustoLN/cosmic-manager";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
nixgl.url = "github:nix-community/nixGL";
};
@ -45,6 +53,7 @@
, dumpasm
, jujutsu
, nixgl
, cosmic-manager
, ...
}@inputs:
let
@ -71,7 +80,13 @@
root: args:
home-manager.lib.homeManagerConfiguration (
{
modules = [ root ] ++ homeManagerModules ++ (args.modules or [ ]);
modules =
[
cosmic-manager.homeManagerModules.cosmic-manager
root
]
++ homeManagerModules
++ (args.modules or [ ]);
pkgs = pkgsForSystem (args.system or "x86_64-linux");
}
// {