aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorCopilot <198982749+Copilot@users.noreply.github.com>2026-03-21 12:03:43 +0100
committerGitHub <noreply@github.com>2026-03-21 12:03:43 +0100
commitecfe68dbe12dfdd58125e0f0bcd047832189b04a (patch)
treef725d2ce55b0d8c634499142169856e6f1cd24d6 /flake.nix
parent011486787f639f2d2474bbaf5a6ef3d77fb45a43 (diff)
downloaddotfiles-ecfe68dbe12dfdd58125e0f0bcd047832189b04a.tar.gz
dotfiles-ecfe68dbe12dfdd58125e0f0bcd047832189b04a.zip
Extend dotfiles to support Linux via standalone home-manager (#6)
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 ];
+ };
};
}