From 88b80fab585a5605764f25357bb4934836009e6a Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Fri, 28 Nov 2025 16:29:50 +0100 Subject: [PATCH] fix(nixos): flake not renamed to just mudics --- nixos/flake.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 + ]; + }; }; }