19 lines
610 B
Nix
19 lines
610 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager/release-23.11";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
disko.url = "github:nix-community/disko";
|
|
disko.inputs.nixpkgs.follows = "nixpkgs";
|
|
srvos.url = "github:numtide/srvos";
|
|
srvos.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
nixos-nftables-firewall.url = "github:thelegy/nixos-nftables-firewall";
|
|
nixos-nftables-firewall.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = _: {};
|
|
}
|