naming conventions

This commit is contained in:
John Lancaster
2026-06-30 23:31:11 -05:00
parent 68737a513f
commit 0e194e5d44
5 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
{ withSystem, self, inputs, ... }:
let
username = "john";
hostname = "omen";
hostname = "john-kde";
in
{
flake.modules.homeManager."${hostname}" = { config, pkgs, lib, ... }:
@@ -62,7 +62,7 @@ in
};
};
flake.homeConfigurations."john@omen" = withSystem "x86_64-linux" (ctx@{ system, inputs', ... }:
flake.homeConfigurations."john@john-kde" = withSystem "x86_64-linux" (ctx@{ system, inputs', ... }:
inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs'.nixpkgs.legacyPackages;
modules = [ inputs.self.modules.homeManager."${hostname}" ]; # Uses the module defined above