mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
14 lines
373 B
Nix
14 lines
373 B
Nix
|
{ config, lib, ... }: {
|
||
|
|
||
|
services.geoclue2.enable = lib.mkForce false;
|
||
|
location = { provider = lib.mkForce "manual"; };
|
||
|
services.localtimed.enable = lib.mkForce false;
|
||
|
|
||
|
# Replace config directory with our repo
|
||
|
system.activationScripts.configDir.text = ''
|
||
|
rm -rf /etc/nixos
|
||
|
ln --symbolic --no-dereference --force ${config.dotfilesPath} /etc/nixos
|
||
|
'';
|
||
|
|
||
|
}
|