mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 16:10:45 +01:00
refactor: pass inputs as attrset to system
This commit is contained in:
parent
b98d7efeec
commit
3255170955
4 changed files with 31 additions and 36 deletions
11
users.nix
11
users.nix
|
|
@ -1,16 +1,13 @@
|
|||
{
|
||||
catppuccin,
|
||||
discord-applemusic-rich-presence,
|
||||
...
|
||||
}: {
|
||||
{inputs, ...}: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
|
||||
extraSpecialArgs = {
|
||||
ctpModule = catppuccin.homeManagerModules.catppuccin;
|
||||
discord-applemusic-rich-presence = discord-applemusic-rich-presence.homeManagerModules.default;
|
||||
ctpModule = inputs.catppuccin.homeManagerModules.catppuccin;
|
||||
discord-applemusic-rich-presence = inputs.discord-applemusic-rich-presence.homeManagerModules.default;
|
||||
};
|
||||
|
||||
users.ryanccn = import ./home.nix;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue