snowflake/hosts/hime/default.nix
2023-05-15 05:39:33 -04:00

37 lines
622 B
Nix

{pkgs, lib, ...}: {
imports = [
./hardware-configuration.nix
../../modules
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "hime";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
users = {
defaultUserShell = pkgs.nushell;
users.notoh = lib.mkForce {
isNormalUser = true;
description = "notoh";
extraGroups = ["networkmanager" "wheel" "docker"];
};
};
environment.systemPackages = with pkgs; [
wget
];
}