mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
33 lines
917 B
Nix
33 lines
917 B
Nix
{ nixpkgs, wsl, home-manager, globals, ... }:
|
|
|
|
# System configuration for WSL
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { };
|
|
modules = [
|
|
globals
|
|
home-manager.nixosModules.home-manager
|
|
wsl.nixosModules.wsl
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
networking.hostName = "wsl";
|
|
gui.enable = false;
|
|
gui.colorscheme = (import ../../modules/colorscheme/gruvbox);
|
|
passwordHash =
|
|
"$6$PZYiMGmJIIHAepTM$Wx5EqTQ5GApzXx58nvi8azh16pdxrN6Qrv1wunDlzveOgawitWzcIxuj76X9V868fsPi/NOIEO8yVXqwzS9UF.";
|
|
wsl = {
|
|
enable = true;
|
|
automountPath = "/mnt";
|
|
defaultUser = globals.user;
|
|
startMenuLaunchers = true;
|
|
wslConf.network.generateResolvConf = true;
|
|
};
|
|
}
|
|
../common.nix
|
|
../../modules/wsl
|
|
../../modules/system
|
|
../../modules/programming/nix.nix
|
|
../../modules/programming/lua.nix
|
|
];
|
|
}
|