Fix $HOME on darwin

This commit is contained in:
Dave Gallant
2023-06-05 13:40:24 -04:00
parent 87733b5dbd
commit 085935f574
2 changed files with 5 additions and 3 deletions

View File

@@ -466,8 +466,9 @@ in {
home.file = { home.file = {
".config/nvim/lua".source = ./nvim/lua; ".config/nvim/lua".source = ./nvim/lua;
".aws/config".source = ./.aws/config; ".aws/config".source = ./.aws/config;
".config/autostart/albert.desktop" = { };
source = pkgs.albert + "/share/applications/albert.desktop";
}; home.file.".config/autostart/albert.desktop" = lib.mkIf stdenv.isLinux {
source = pkgs.albert + "/share/applications/albert.desktop";
}; };
} }

View File

@@ -1,4 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
users.users."dave.gallant".home = "/Users/dave.gallant";
imports = [ imports = [
./brew.nix ./brew.nix
./preferences.nix ./preferences.nix