before npins

This commit is contained in:
atagen 2025-04-06 23:50:50 +10:00
parent d429476553
commit 63fbd6d499
22 changed files with 627 additions and 330 deletions

View file

@ -1,12 +1,17 @@
{
nixpkgs,
home-manager,
system,
inputs,
self,
sharedModules,
...
}:
with inputs;
let
nix-rice = import "${inputs.nix-rice}/lib.nix" {
inherit (nixpkgs) lib;
kitty-themes-src = { };
};
rice = import ./rice.nix { inherit system nixpkgs nix-rice; };
in
{
systems =
definitions:
@ -15,7 +20,7 @@
nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs self;
inherit inputs rice nix-rice;
mainUser = info.user;
};
modules =
@ -26,7 +31,7 @@
home-manager = {
useGlobalPkgs = true;
extraSpecialArgs = {
inherit inputs self;
inherit inputs rice nix-rice;
mainUser = info.user;
};
users.${info.user}.imports = [