diff --git a/nixos/flake.nix b/nixos/flake.nix index c4ebea9..d043776 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -8,14 +8,14 @@ nixpkgs, ... } @ inputs: { - nixosConfigurations.plg-mudics = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - specialArgs = { - inherit inputs; - }; - modules = [ - ./configuration.nix - ]; + nixosConfigurations.mudics = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { + inherit inputs; }; + modules = [ + ./configuration.nix + ]; + }; }; }