dotfiles.nix/configuration.nix

190 lines
4.5 KiB
Nix
Raw Normal View History

2020-01-01 21:12:08 +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).
{ config, pkgs, ... }:
{
2020-01-03 06:05:19 +00:00
imports = [
# Include the results of the hardware scan.
2020-01-01 21:12:08 +00:00
./hardware-configuration.nix
2020-01-03 06:05:19 +00:00
# Cachix caches
./cachix.nix
2020-01-01 21:12:08 +00:00
# Overlays
<home-manager/nixos>
];
2020-01-02 22:54:21 +00:00
# Bootloader
2020-01-01 21:12:08 +00:00
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 64;
boot.loader.efi.canTouchEfiVariables = true;
boot.earlyVconsoleSetup = true;
2020-01-02 04:44:48 +00:00
system.autoUpgrade.enable = true;
2020-01-02 22:54:21 +00:00
networking = {
hostName = "nixpad"; # Define your hostname.
networkmanager = {
enable = true;
wifi.scanRandMacAddress = false;
};
2020-01-01 21:12:08 +00:00
2020-01-02 22:54:21 +00:00
# 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 = {
enp0s25.useDHCP = true;
wlp3s0.useDHCP = true;
wwp0s20u4c2i12.useDHCP = true;
};
};
2020-01-01 21:12:08 +00:00
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
fonts = {
enableDefaultFonts = true;
2020-01-02 06:23:41 +00:00
fonts = with pkgs; [
source-code-pro
fira-code
fira-code-symbols
font-awesome_5
];
fontconfig = {
enable = true;
defaultFonts = { monospace = [ "Fira Code" ]; };
};
2020-01-01 21:12:08 +00:00
};
# Select internationalisation properties.
i18n = {
consoleKeyMap = "us";
defaultLocale = "en_US.UTF-8";
};
# Set your time zone.
time.timeZone = "America/New_York";
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# System utilities
curl
fish
git
htop
tmux
tree
vim
wget
];
# 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; };
2020-01-02 04:44:48 +00:00
programs = {
fish.enable = true;
2020-01-02 06:23:41 +00:00
light.enable = true;
2020-01-03 06:05:19 +00:00
nm-applet.enable = true;
seahorse.enable = true;
ssh = { startAgent = true; };
2020-01-02 04:44:48 +00:00
};
2020-01-01 21:12:08 +00:00
# List services that you want to enable:
services = {
fprintd.enable = true;
2020-01-02 04:44:48 +00:00
openssh.enable = true;
clipmenu.enable = true;
2020-01-01 21:12:08 +00:00
geoclue2.enable = true;
2020-01-02 04:44:48 +00:00
printing.enable = true;
gnome3.gnome-keyring.enable = true;
2020-01-01 21:12:08 +00:00
xserver = {
enable = true;
layout = "us";
2020-01-02 06:23:41 +00:00
config = ''
Section "Device"
2020-01-02 06:26:39 +00:00
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
2020-01-02 06:23:41 +00:00
EndSection
'';
2020-01-01 21:12:08 +00:00
# Enable touchpad support.
libinput = {
enable = true;
naturalScrolling = true;
};
2020-01-02 04:44:48 +00:00
desktopManager = {
default = "home-manager";
session = [{
name = "home-manager";
start = ''
${pkgs.runtimeShell} $HOME/.hm-xsession &
waitPID=$!
'';
}];
};
displayManager = {
lightdm = {
enable = true;
autoLogin = {
enable = true;
user = "mat";
};
};
};
2020-01-01 21:12:08 +00:00
};
};
# Enable sound.
sound.enable = true;
2020-01-02 06:23:41 +00:00
# Hardware switches
2020-01-03 08:06:12 +00:00
hardware = {
opengl = {
driSupport32Bit = true;
extraPackages32 = [ pkgs.pkgsi686Linux.libva ];
};
pulseaudio = {
enable = true;
support32Bit = true;
};
};
2020-01-01 21:12:08 +00:00
# Define a user account. Don't forget to set a password with passwd.
users.users.mat = {
isNormalUser = true;
shell = pkgs.fish;
extraGroups = [
"wheel" # Enable sudo for the user.
"networkmanager"
2020-01-02 04:48:19 +00:00
"audio"
2020-01-02 06:23:41 +00:00
"video"
2020-01-01 21:12:08 +00:00
];
};
home-manager.users.mat = import ./home.nix;
# Don't ask for my password *quite* as often.
security.sudo.extraConfig = "Defaults timestamp_timeout=60";
2020-01-03 08:06:12 +00:00
nix = {
binaryCaches = [ "https://hydra.iohk.io" ];
2020-01-05 09:53:17 +00:00
binaryCachePublicKeys =
[ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" ];
2020-01-03 08:06:12 +00:00
};
2020-01-01 21:12:08 +00:00
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "19.09"; # Did you read the comment?
}