{ description = "Dat's flake"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; hyprland.url = "github:hyprwm/Hyprland"; hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; inputs.hyprland.follows = "hyprland"; }; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; zen-browser = { url = "github:0xc000022070/zen-browser-flake"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, ... } @ inputs: { nixosConfigurations = { datNix = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ ./system/configuration.nix ]; }; }; }; }