mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 08:42:02 +00:00
22 lines
444 B
Nix
22 lines
444 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.nmasur.profiles.wsl;
|
||
|
in
|
||
|
|
||
|
{
|
||
|
options.nmasur.profiles.wsl.enable = lib.mkEnableOption "WSL settings";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
# Replace config directory with our repo, since it sources from config on
|
||
|
# every launch
|
||
|
system.activationScripts.configDir.text = ''
|
||
|
rm -rf /etc/nixos
|
||
|
ln --symbolic --no-dereference --force ${config.dotfilesPath} /etc/nixos
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|