snowflake/hosts/hime/default.nix

38 lines
622 B
Nix
Raw Normal View History

2023-05-15 05:39:33 -04:00
{pkgs, lib, ...}: {
2023-04-23 17:45:37 -04:00
imports = [
2023-01-31 11:58:43 -05:00
./hardware-configuration.nix
../../modules
2023-04-23 17:45:37 -04:00
];
2023-01-31 11:58:43 -05:00
2023-02-17 01:15:46 -05:00
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
2023-04-23 17:45:37 -04:00
2023-04-02 09:12:41 -04:00
networking = {
hostName = "hime";
};
2023-04-23 17:45:37 -04:00
services.xserver = {
2023-01-31 11:58:43 -05:00
layout = "us";
xkbVariant = "";
};
2023-04-23 17:45:37 -04:00
users = {
defaultUserShell = pkgs.nushell;
2023-05-15 05:39:33 -04:00
users.notoh = lib.mkForce {
2023-04-23 17:45:37 -04:00
isNormalUser = true;
2023-05-15 05:39:33 -04:00
description = "notoh";
2023-05-12 02:07:29 -04:00
extraGroups = ["networkmanager" "wheel" "docker"];
2023-04-23 17:45:37 -04:00
};
2023-01-31 11:58:43 -05:00
};
environment.systemPackages = with pkgs; [
2023-04-23 17:45:37 -04:00
wget
2023-01-31 11:58:43 -05:00
];
}