cos/flake.nix

35 lines
837 B
Nix
Raw Normal View History

2025-04-09 00:41:08 -04:00
{
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";
2025-10-06 14:39:32 -04:00
#inputs.nixpkgs.follows = "nixpkgs";
2025-04-09 00:41:08 -04:00
};
2025-04-10 15:41:08 -04:00
mapnix = {
url = "github:clay53/mapnix";
};
osm-bikeability = {
url = "github:clay53/osm-bikeability";
flake = false;
};
2025-10-28 16:21:06 -04:00
winboat = {
url = "github:TibixDev/winboat";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-04-09 00:41:08 -04:00
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.clhickey-nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
2025-10-29 15:47:06 -04:00
./clhickey-nixos/configuration.nix
2025-04-09 00:41:08 -04:00
];
};
};
}