2022-07-08 03:13:09 +00:00
|
|
|
{ config, lib, ... }: {
|
|
|
|
|
|
|
|
services.geoclue2.enable = lib.mkForce false;
|
|
|
|
location = { provider = lib.mkForce "manual"; };
|
|
|
|
services.localtimed.enable = lib.mkForce false;
|
|
|
|
|
2022-07-10 22:17:19 +00:00
|
|
|
# Used by NeoVim for clipboard sharing with Windows
|
|
|
|
# home-manager.users.${config.user}.home.sessionPath =
|
|
|
|
# [ "/mnt/c/Program Files/win32yank/" ];
|
|
|
|
|
2022-07-08 03:13:09 +00:00
|
|
|
# Replace config directory with our repo
|
|
|
|
system.activationScripts.configDir.text = ''
|
|
|
|
rm -rf /etc/nixos
|
|
|
|
ln --symbolic --no-dereference --force ${config.dotfilesPath} /etc/nixos
|
|
|
|
'';
|
|
|
|
|
|
|
|
}
|