❄️ Dotfiles for our NixOS system configuration.
1{
2 imports = [
3 ./extras.nix
4 ../nixos
5 ./packages.nix
6 ];
7
8 config = {
9 wsl = {
10 enable = true;
11 defaultUser = "chloe";
12 };
13
14 # Windows manages the firewall for us, so disable NixOS specific firewall settings.
15 settings.firewall.enable = false;
16
17 # Allow opening files and links in Windows from WSL
18 environment.variables.BROWSER = "wsl-open";
19 };
20}