feat: add usahara

This commit is contained in:
=
2025-01-25 04:31:06 +00:00
parent 4ae878baf9
commit 843064136e
2 changed files with 29 additions and 0 deletions

View File

@@ -22,6 +22,10 @@
name = "wsl-kumatani"; name = "wsl-kumatani";
isWSL = true; isWSL = true;
} }
{
name = "wsl-usahara";
isWSL = true;
}
{ {
name = "tux"; name = "tux";
} }

View File

@@ -0,0 +1,25 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{
config,
lib,
pkgs,
meta,
...
}:
{
imports = [ ../../modules/default.nix ];
wsl.enable = true;
wsl.defaultUser = "luca";
networking.hostName = meta.hostname;
hm.enable = true;
users.users.luca.shell = pkgs.zsh;
environment.systemPackages = with pkgs; config.commonPackages ++ [ asciiquarium ];
system.stateVersion = "24.05";
}