{ description = "artemis workstation"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05"; nix-flatpak.url = "github:gmodena/nix-flatpak"; home-manager = { url = "github:nix-community/home-manager/release-26.05"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager, nix-flatpak, ... }: let system = "x86_64-linux"; in { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.cybrneko = { pkgs, ... }: { imports = [ nix-flatpak.homeManagerModules.nix-flatpak ./home.nix ./users/cybrneko.nix ]; }; } ]; }; }; }