37 lines
622 B
Nix
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
|
|
];
|
|
}
|