Files
dotfiles/nix/hosts/wsl-kumatani/configuration.nix
rocketcamel 9b9ca64fc6 zsh additions + qol changes (#1)
* flake changes

* hm enable by default, omp home-manager

* zsh plugins
2025-02-03 00:26:06 -08:00

28 lines
588 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 = [ ];
wsl.enable = true;
wsl.defaultUser = "luca";
networking.hostName = meta.hostname;
users.users.luca = {
shell = pkgs.zsh;
openssh.authorizedKeys.keys = config.authorized_ssh;
};
environment.systemPackages = with pkgs; config.commonPackages ++ [ ];
system.stateVersion = "24.05";
}