62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
# Edet this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
{
|
||
config,
|
||
pkgs,
|
||
lib,
|
||
...
|
||
}: {
|
||
imports = [
|
||
# Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
local.sys = {
|
||
baseline.enable = true;
|
||
|
||
yubikey.enable = true;
|
||
audio.enable = true;
|
||
graphics.enable = true;
|
||
virtualisation.enable = true;
|
||
androidSupport.enable = true;
|
||
};
|
||
|
||
boot = {
|
||
loader = {
|
||
systemd-boot.enable = true;
|
||
efi.canTouchEfiVariables = true;
|
||
};
|
||
tmp.useTmpfs = true;
|
||
kernelPackages = pkgs.linuxPackages_latest;
|
||
};
|
||
|
||
networking = {
|
||
hostName = "posixlycorrect";
|
||
networkmanager.enable = true;
|
||
|
||
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||
# replicates the default behaviour.
|
||
useDHCP = false;
|
||
interfaces.enp7s0.useDHCP = true;
|
||
interfaces.wlp6s0.useDHCP = true;
|
||
};
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
||
users = {
|
||
users.fabian = {
|
||
isNormalUser = true;
|
||
uid = 1002; # nunca cambiar mi ID de usuario
|
||
group = "fabian";
|
||
shell = pkgs.zsh;
|
||
extraGroups = ["users" "wheel" "networkmanager" "dialout" "libvirtd"];
|
||
};
|
||
groups.fabian.gid = 1002;
|
||
};
|
||
|
||
time.timeZone = "America/Costa_Rica";
|
||
}
|