snowflake/hosts/hime/default.nix
2023-04-26 19:23:23 -04:00

45 lines
745 B
Nix

{pkgs, ...}: {
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 = "";
};
virtualisation.docker.enable = true;
users = {
defaultUserShell = pkgs.nushell;
users.oh = {
isNormalUser = true;
description = "oh";
extraGroups = ["networkmanager" "wheel"];
packages = with pkgs; [
hugo
yt-dlp
];
};
};
environment.systemPackages = with pkgs; [
docker-compose
wget
python3Full
nfs-utils
];
}