diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:53:57 -0400 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 11:53:57 -0400 |
| commit | c1fd67bd9b44d3c55eb3c86763e5e0a69a1490a4 (patch) | |
| tree | 06f3f709899cfd4c47dd66bd38889cd3beb260d2 /machines/oxo | |
| parent | 57de4ede0cef89c04a3728e4f8c97f67ce771eff (diff) | |
fix general oxo configuration
Diffstat (limited to 'machines/oxo')
| -rw-r--r-- | machines/oxo/configuration.nix | 2 | ||||
| -rw-r--r-- | machines/oxo/git-home.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/machines/oxo/configuration.nix b/machines/oxo/configuration.nix index ef7a84b..5dfc9e7 100644 --- a/machines/oxo/configuration.nix +++ b/machines/oxo/configuration.nix @@ -27,7 +27,7 @@ useUserPackages = true; users = { git = import ./git-home.nix; - compromyse = import ./home.nix + compromyse = import ./home.nix; }; }; } diff --git a/machines/oxo/git-home.nix b/machines/oxo/git-home.nix index ce20f9e..c2bff08 100644 --- a/machines/oxo/git-home.nix +++ b/machines/oxo/git-home.nix @@ -1,9 +1,9 @@ -{ inputs, pkgs, ... }: +{ inputs, pkgs, lib, ... }: { home = { username = "git"; - homeDirectory = "/home/git"; + homeDirectory = lib.mkForce "/home/git"; }; home.packages = with pkgs; [ |
