diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,5 @@ { - description = "Simen Andre's macOS configuration"; + description = "Simen Andre's dotfiles configuration"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; @@ -35,5 +35,15 @@ } ]; }; + + homeConfigurations."simenandre" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages."x86_64-linux"; + modules = [ ./modules/home ]; + }; + + homeConfigurations."simenandre@aarch64-linux" = home-manager.lib.homeManagerConfiguration { + pkgs = nixpkgs.legacyPackages."aarch64-linux"; + modules = [ ./modules/home ]; + }; }; } |
