permafrost/configuration.nix
2024-12-27 04:40:39 -08:00

48 lines
1,008 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }:
{
imports = [ ./modules ];
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
permafrost.nyazoom.enable = true;
networking.hostName = "virtmsi"; # Define your hostname.
# Allowing ssh auth
security.pam.sshAgentAuth.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
nix.settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [
"ravenshade"
];
};
# Enable networking
networking.networkmanager.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.ravenshade = {
isNormalUser = true;
description = "Zynh Ludwig";
extraGroups = [ "networkmanager" "wheel" ];
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
neovim
git
curl
];
system.stateVersion = "24.05";
}