nixrice/.config/nixos/configuration.def.nix
2023-12-08 15:43:54 -05:00

32 lines
709 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.

{ config, pkgs, ... }:
{
imports = [
# Do not remove
./core.nix
# Want this for bare metal
# ./hardware-configuration.nix
# Specific profiles for this machine
# ./profiles/lf.nix
# ./profiles/nvim.nix
# ./profiles/desktop_x.nix
];
networking.hostName = "nix";
time.timeZone = "America/New_York";
# Define a user account. Don't forget to set a password with passwd.
users.users.nixos = {
isNormalUser = true;
extraGroups = [ # User implicitly in "users" group
"wheel" # Sudo priviledges
];
shell = pkgs.zsh;
# Set so when mutableUsers is set to "false", the user still has a way to login.
password = "";
};
}