[NixOS] Install fonts and set shell in WSL
This commit is contained in:
parent
dc600c5958
commit
4f7b609c2e
@ -1,15 +1,20 @@
|
|||||||
{ inputs, ... }:
|
{ inputs, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixos-wsl.nixosModules.wsl
|
inputs.nixos-wsl.nixosModules.wsl
|
||||||
|
./environment.nix
|
||||||
|
./essential.nix
|
||||||
|
./fonts.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
./essential.nix
|
|
||||||
./environment.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
SHELL = "${pkgs.zsh}/bin/zsh";
|
||||||
|
};
|
||||||
|
|
||||||
wsl = {
|
wsl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
automountPath = "/mnt";
|
automountPath = "/mnt";
|
||||||
|
Loading…
Reference in New Issue
Block a user