merging some changes

This commit is contained in:
Glen Goodwin 2023-09-14 23:00:03 -04:00
parent 3e16e02840
commit a0ca5540e7
14 changed files with 359 additions and 27 deletions

View file

@ -19,10 +19,10 @@
url = "github:cachix/devenv/main";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-colors.url = "github:misterio77/nix-colors";
};
outputs = inputs @ { self, nixpkgs, home-manager, hyprland, devenv, ... }:
outputs = { self, nixpkgs, home-manager, hyprland, devenv, ... }@inputs:
let
system = "x86_64-linux";
@ -40,6 +40,7 @@
nixosConfigurations = (
import ./hosts {
inherit (nixpkgs) lib;
specialArgs = { inherit inputs; };
inherit inputs user system home-manager hyprland devenv;
}
);