better aliases
This commit is contained in:
parent
816c61985d
commit
c89bd50f8e
4 changed files with 150 additions and 31 deletions
17
flake.nix
17
flake.nix
|
|
@ -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");
|
||||
}
|
||||
// {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue