{ description = "mtxyz's NixOS systems"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nur.url = "github:nix-community/NUR"; snowfall-lib = { url = "github:snowfallorg/lib"; inputs.nixpkgs.follows = "nixpkgs"; }; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = inputs: inputs.snowfall-lib.mkFlake { inherit inputs; snowfall.namespace = "mtxyz"; channels-config.allowUnfree = true; overlays = with inputs; [ nur.overlay ]; systems.modules.nixos = with inputs; [ home-manager.nixosModules.home-manager ]; src = ./.; }; }