30 lines
732 B
Nix
30 lines
732 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
penn-nix.url = "github:clay53/penn-nix";
|
|
cnvim = {
|
|
url = "github:clay53/cnvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
mapnix = {
|
|
url = "github:clay53/mapnix";
|
|
};
|
|
osm-bikeability = {
|
|
url = "github:clay53/osm-bikeability";
|
|
flake = false;
|
|
};
|
|
};
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.clhickey-nixos = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./clhickey-nixos/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|