2021-08-09 12:19:21 +00:00
|
|
|
|
# Edit 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’).
|
|
|
|
|
|
2022-04-29 01:56:21 +00:00
|
|
|
|
{ config, pkgs, user, font, ... }:
|
2021-08-09 12:19:21 +00:00
|
|
|
|
|
|
|
|
|
{
|
2022-01-13 13:51:13 +00:00
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2022-01-23 00:16:37 +00:00
|
|
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
2022-01-13 13:51:13 +00:00
|
|
|
|
|
2021-08-09 12:19:21 +00:00
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
# networking.hostName = "nixos"; # Define your hostname.
|
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
networking.useDHCP = false;
|
|
|
|
|
networking.interfaces.enp0s31f6.useDHCP = true;
|
|
|
|
|
networking.interfaces.wlp3s0.useDHCP = true;
|
|
|
|
|
|
2021-11-06 19:16:53 +00:00
|
|
|
|
# Install fonts
|
2022-04-23 16:22:04 +00:00
|
|
|
|
fonts.fonts = with pkgs; [
|
2022-04-29 01:56:21 +00:00
|
|
|
|
font.package # Used for Vim and Terminal
|
2022-04-24 14:49:10 +00:00
|
|
|
|
font-awesome # Icons for i3
|
|
|
|
|
# siji # More icons for Polybar
|
2022-04-23 16:22:04 +00:00
|
|
|
|
];
|
2022-04-29 01:56:21 +00:00
|
|
|
|
fonts.fontconfig.defaultFonts.monospace = [ font.name ];
|
2021-08-09 12:19:21 +00:00
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
2022-04-29 02:12:16 +00:00
|
|
|
|
environment.systemPackages = with pkgs; [ fish git vim wget curl ];
|
2022-04-23 17:15:14 +00:00
|
|
|
|
|
2021-08-09 12:19:21 +00:00
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# 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. It‘s 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).
|
2022-01-15 15:14:12 +00:00
|
|
|
|
system.stateVersion = "21.11"; # Did you read the comment?
|
2021-08-09 12:19:21 +00:00
|
|
|
|
|
|
|
|
|
}
|