Files
dotfiles/nix/hosts/wsl-kumatani/configuration.nix
2025-01-22 05:51:56 +00:00

21 lines
571 B
Nix

# 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";
}