mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
13 lines
237 B
Nix
13 lines
237 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
in
|
|
{
|
|
# See https://nix-community.github.io/NixOS-WSL/how-to/change-username.html
|
|
# to reset default WSL login
|
|
environment = {
|
|
shells = [
|
|
"/etc/profiles/per-user/nixolas/bin/zsh"
|
|
];
|
|
};
|
|
}
|