aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/default.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 /modules/home/default.nix
parent011486787f639f2d2474bbaf5a6ef3d77fb45a43 (diff)
downloaddotfiles-ecfe68dbe12dfdd58125e0f0bcd047832189b04a.tar.gz
dotfiles-ecfe68dbe12dfdd58125e0f0bcd047832189b04a.zip
Extend dotfiles to support Linux via standalone home-manager (#6)
Diffstat (limited to 'modules/home/default.nix')
-rw-r--r--modules/home/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
index 1c0ae0e..bf1900d 100644
--- a/modules/home/default.nix
+++ b/modules/home/default.nix
@@ -11,7 +11,7 @@
home = {
username = "simenandre";
- homeDirectory = "/Users/simenandre";
+ homeDirectory = if pkgs.stdenv.isDarwin then "/Users/simenandre" else "/home/simenandre";
# Do not change this after the first installation
stateVersion = "24.11";
};