{ description = "System config"; inputs = { nixpkgs.url = github:nixos/nixpkgs/nixos-unstable; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; lib = nixpkgs.lib; in { nixosConfigurations = { firefly = lib.nixosSystem { inherit system; modules = [ ./hosts/firefly/configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.dm = { imports = [ ./home.nix ]; }; } ]; }; p14s = lib.nixosSystem { inherit system; modules = [ ./hosts/p14s/configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.dm = { imports = [ ./home.nix ]; }; } ]; }; }; }; }