1
0
Fork 0

Add experimental "mizuki" configuration

This commit is contained in:
Avery 2025-02-24 21:07:36 +01:00
parent 25ddde2a9b
commit 762e95d309
Signed by: Avery
GPG key ID: B684FD451B692E04
5 changed files with 86 additions and 2 deletions

22
hosts/mizuki/nixos.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, lib, pkgs }: {
environment.shells = with pkgs; [ zsh ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
security.sudo.enable = true;
users = {
defaultUserShell = pkgs.zsh;
users.avery.extraGroups = [ "wheel" ];
};
wsl = {
enable = true;
defaultUser = "avery";
};
system.stateVersion = "24.11";
}