From 8fd30ecb0ab3740042018945fce78662731a0dcc Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 12 Oct 2024 22:22:00 +0200 Subject: [PATCH] chore: simplify home-manager target name --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 4bc95ff..84149e0 100644 --- a/flake.nix +++ b/flake.nix @@ -79,11 +79,11 @@ luci = createNixosSystem { system = "x86_64-linux"; hostname = "luci"; }; }; homeConfigurations = { - "ephase@rick" = createHomeConfiguration { system = "aarch64-linux"; hostname = "rick";}; - "ephase@luci" = createHomeConfiguration { system = "x86_64-linux"; hostname = "luci";}; - "ephase@morty" = createHomeConfiguration { system = "x86_64-linux"; hostname = "morty";}; - "ephase@mrmeeseeks" = createHomeConfiguration { system = "x86_64-linux"; hostname = "mrmeeseeks";}; - "yorick-barbanneau@work" = createHomeConfiguration { + "rick" = createHomeConfiguration { system = "aarch64-linux"; hostname = "rick";}; + "luci" = createHomeConfiguration { system = "x86_64-linux"; hostname = "luci";}; + "morty" = createHomeConfiguration { system = "x86_64-linux"; hostname = "morty";}; + "mrmeeseeks" = createHomeConfiguration { system = "x86_64-linux"; hostname = "mrmeeseeks";}; + "work" = createHomeConfiguration { system = "x86_64-linux"; hostname = "work"; username = "yorick-barbanneau";