Add experimental "mizuki" configuration
This commit is contained in:
parent
25ddde2a9b
commit
762e95d309
5 changed files with 86 additions and 2 deletions
22
hosts/mizuki/nixos.nix
Normal file
22
hosts/mizuki/nixos.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue