{ inputs, config, ... }: let hostname = "dnsc-machine"; in { flake.nixosConfigurations.dnsc-machine = inputs.nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = with config.flake.modules.nixos; [ home-manager base shell git ssh neovim cli-tools nix nvidia-graphics drawing-tablet bluetooth clipboard printing desktop terminal gaming browser { imports = [ ./_hardware-configuration.nix ]; networking.hostName = hostname; system.stateVersion = "24.11"; } ]; }; }