Make home manager config work cross-platform

This commit is contained in:
Gene Liverman 2025-08-09 22:58:18 -04:00
parent 77ebe6ddd5
commit 516036541b
No known key found for this signature in database
3 changed files with 13 additions and 6 deletions

View file

@ -174,9 +174,16 @@
# Home Manager (only) users
homeConfigurations = {
gene = localLib.mkHomeConfig {
gene-x86_64-linux = localLib.mkHomeConfig {
homeDirectory = "/home/gene";
username = "gene";
system = "x86_64-linux";
};
gene-aarch64-linux = localLib.mkHomeConfig {
homeDirectory = "/home/gene";
username = "gene";
system = "aarch64-linux";
};
}; # end homeConfigurations