snowflake/hosts/hime/default.nix

59 lines
847 B
Nix
Raw Normal View History

2023-03-31 18:15:58 -04:00
{
pkgs,
...
}: {
2023-01-31 11:58:43 -05:00
imports =
[
./hardware-configuration.nix
../../modules
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-02 09:12:41 -04:00
networking = {
hostName = "hime";
};
2023-04-22 03:21:08 -04:00
2023-01-31 11:58:43 -05:00
services.xserver = {
layout = "us";
xkbVariant = "";
};
services.openssh = {
enable = true;
2023-03-01 03:47:59 -05:00
settings = {
PasswordAuthentication = true;
2023-01-31 11:58:43 -05:00
};
2023-03-01 02:08:41 -05:00
};
2023-01-31 11:58:43 -05:00
virtualisation.docker.enable = true;
2023-02-27 05:50:52 -05:00
users ={
defaultUserShell = pkgs.nushell;
users.oh = {
2023-01-31 11:58:43 -05:00
isNormalUser = true;
description = "oh";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
hugo
2023-02-25 04:33:17 -05:00
yt-dlp
2023-01-31 11:58:43 -05:00
];
};
2023-02-27 05:51:37 -05:00
};
2023-01-31 11:58:43 -05:00
environment.systemPackages = with pkgs; [
docker-compose
wget
python3Full
2023-02-16 23:10:34 -05:00
nfs-utils
2023-01-31 11:58:43 -05:00
];
}