snowflake/hosts/sutakku/default.nix

78 lines
1.5 KiB
Nix
Raw Normal View History

2023-02-27 21:38:27 -05:00
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "sutakku";
networking.networkmanager.enable = true;
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
2023-02-27 21:44:06 -05:00
users = {
defaultUserShell = pkgs.nushell;
users.oh = {
2023-02-27 21:38:27 -05:00
isNormalUser = true;
description = "oh";
extraGroups = [ "networkmanager" "wheel" ];
};
2023-02-27 21:44:06 -05:00
};
nixpkgs.config.allowUnfree = true;
2023-02-27 21:38:27 -05:00
environment.systemPackages = with pkgs; [
helix
wget
git
gh
lazygit
nfs-utils
pinentry-curses
];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
services.openssh.enable = true;
networking.firewall.enable = true;
networking.nameservers = [ "192.168.1.45" ];
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
warn-dirty = false
'';
};
system.stateVersion = "23.05";
}