{ description = "Smayzy's nixos config (probably a violation of the geneva convention but who cares)"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; firefox-addons = { url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons"; inputs.nixpkgs.follows = "nixpkgs"; }; nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest"; }; outputs = { self, nixpkgs, nix-flatpak, ... } @ inputs: let system = "x86_64-linux"; in { nixosConfigurations = { nixos = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs system; }; modules = [ ./configuration.nix nix-flatpak.nixosModules.nix-flatpak ]; }; }; }; }