Initialized repository

This commit is contained in:
lulusilly 2026-01-12 17:57:30 +00:00
commit f9e05c8fbe
5 changed files with 363 additions and 0 deletions

21
configuration.nix Normal file
View 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";
}