new stuff

This commit is contained in:
Henry Hiles 2024-03-26 13:11:25 -04:00
parent 771f4b6317
commit ecf789b145
10 changed files with 80 additions and 76 deletions

View file

@ -28,12 +28,16 @@
opt = nixpkgs.lib.optionals;
dirFiles = dir: map (file: "${dir}/${file}") (builtins.attrNames (builtins.readDir dir));
};
nixpkgs-teams = import inputs.nixpkgs-teams {
system = "x86_64-linux";
config.allowUnfree = true;
};
system = hostname: isDesktop:
with dirUtils;
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs self isDesktop dirUtils;
inherit inputs self isDesktop dirUtils nixpkgs-teams;
};
modules =