From 7c4652f8a0968452c793279771fdc4d18ac9e60b Mon Sep 17 00:00:00 2001 From: Mohamed Chrayed Date: Tue, 3 Mar 2026 20:45:45 +0100 Subject: [PATCH] remove user --- modules/hosts/computer-mo/nixos-configurations.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/hosts/computer-mo/nixos-configurations.nix b/modules/hosts/computer-mo/nixos-configurations.nix index 1ebae95..91a0521 100644 --- a/modules/hosts/computer-mo/nixos-configurations.nix +++ b/modules/hosts/computer-mo/nixos-configurations.nix @@ -1,14 +1,14 @@ { inputs, ... }: let system = "x86_64-linux"; - user = "mo"; +# user = "mo"; host = "computer-mo"; mkHost = inputs.self.lib.mkHost; in { flake.nixosConfigurations.${host} = mkHost { - inherit system user host; + inherit system host; extraModules = [ inputs.self.nixosModules.${host} ]; }; }