diff options
Diffstat (limited to '')
| -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; [  | 
