nixos-config/common/config/config.nix

77 lines
2 KiB
Nix
Raw Normal View History

2022-01-06 21:14:02 -05:00
{ config, pkgs, nur,
nixpkgs, # The flake's input version of nixpkgs
... }:
2022-01-16 23:05:12 -05:00
{
2022-01-06 21:14:02 -05:00
nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
restrict-eval = false
'';
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ nur.overlay ];
# Pin nixpkgs to the flake input
nix.registry.nixpkgs.flake = nixpkgs;
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.wireless.networks = {
"NETGEAR97".psk = "pastelcello694";
};
# Set your time zone.
time.timeZone = "America/New_York";
# Enable CUPS to print documents.
# services.printing.enable = true;
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.opengl.enable = true;
users.mutableUsers = false;
users.users.kiana = {
isNormalUser = true;
description = "Kiana Sheibani";
extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.fish;
};
fonts = {
enableDefaultFonts = true;
fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
ubuntu_font_family
(nerdfonts.override { fonts = [ "FiraCode" "Ubuntu" "UbuntuMono" ]; })
meslo-lgs-nf
];
fontconfig = {
enable = true;
defaultFonts = {
serif = [ "Noto Serif" ];
sansSerif = [ "Noto Sans" ];
monospace = [ "Meslo Nerd Font" ];
};
};
};
environment.sessionVariables.GTK_THEME = "Adwaita:dark";
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}