forked from colonelpanic/dotfiles
14 lines
214 B
Nix
14 lines
214 B
Nix
{ lib, pkgs, config, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../syncthing.nix
|
|
../wsl.nix
|
|
../kat.nix
|
|
];
|
|
|
|
networking.hostName = "jay-lenovo-wsl";
|
|
|
|
wsl.defaultUser = "kat";
|
|
system.stateVersion = "22.05";
|
|
}
|