Initialized repository
This commit is contained in:
commit
f9e05c8fbe
5 changed files with 363 additions and 0 deletions
21
configuration.nix
Normal file
21
configuration.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# NixOS-WSL specific options are documented on the NixOS-WSL repository:
|
||||
# https://nix-community.github.io/NixOS-WSL/
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
wsl.enable = true;
|
||||
wsl.defaultUser = "lunita";
|
||||
|
||||
programs.zsh.enable = true;
|
||||
users.users.lunita.shell = pkgs.zsh;
|
||||
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
ports = [ 4356 ];
|
||||
};
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue