aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index fa2e203..0e5bab4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 ];
+ };
};
}