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;
|
|
|
|
|
|
2020-05-28 17:29:19 +00:00
|
|
|
|
console.earlySetup = true;
|
|
|
|
|
console.keyMap = "us";
|
2020-01-01 21:12:08 +00:00
|
|
|
|
|
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;
|
|
|
|
|
};
|
2021-01-03 16:18:57 +00:00
|
|
|
|
|
|
|
|
|
wireguard.enable = true;
|
|
|
|
|
|
|
|
|
|
firewall = let
|
|
|
|
|
ports = [
|
|
|
|
|
32400 # Plex local
|
|
|
|
|
57955 # Plex VPN
|
|
|
|
|
57430 # Deluge
|
|
|
|
|
];
|
|
|
|
|
in {
|
|
|
|
|
allowedTCPPorts = ports;
|
|
|
|
|
allowedUDPPorts = ports;
|
|
|
|
|
};
|
2020-01-02 22:54:21 +00:00
|
|
|
|
};
|
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
|
2020-03-14 08:49:32 +00:00
|
|
|
|
font-awesome_4
|
2020-01-24 21:19:15 +00:00
|
|
|
|
aileron
|
2020-11-15 05:08:06 +00:00
|
|
|
|
gohufont
|
|
|
|
|
spleen
|
|
|
|
|
tamsyn
|
|
|
|
|
siji
|
|
|
|
|
unscii
|
2020-01-02 06:23:41 +00:00
|
|
|
|
];
|
2020-01-02 00:31:37 +00:00
|
|
|
|
fontconfig = {
|
|
|
|
|
enable = true;
|
|
|
|
|
defaultFonts = { monospace = [ "Fira Code" ]; };
|
|
|
|
|
};
|
2020-01-01 21:12:08 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
2020-05-28 17:29:19 +00:00
|
|
|
|
i18n = { defaultLocale = "en_US.UTF-8"; };
|
2020-01-01 21:12:08 +00:00
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
git
|
|
|
|
|
tmux
|
|
|
|
|
tree
|
|
|
|
|
vim
|
|
|
|
|
wget
|
2021-01-03 16:18:57 +00:00
|
|
|
|
|
|
|
|
|
# Interfacing with HFS+ drives
|
|
|
|
|
hfsprogs
|
2020-01-01 21:12:08 +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; };
|
|
|
|
|
|
2020-01-02 04:44:48 +00:00
|
|
|
|
programs = {
|
2020-05-28 17:29:19 +00:00
|
|
|
|
fish.enable = false;
|
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 = {
|
2020-05-28 17:29:19 +00:00
|
|
|
|
fprintd = {
|
|
|
|
|
enable = true;
|
2020-11-15 05:08:06 +00:00
|
|
|
|
# package = pkgs.fprintd-thinkpad;
|
2020-05-28 17:29:19 +00:00
|
|
|
|
};
|
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;
|
2021-01-03 16:18:57 +00:00
|
|
|
|
gvfs.enable = true;
|
2020-01-02 04:44:48 +00:00
|
|
|
|
printing.enable = true;
|
|
|
|
|
gnome3.gnome-keyring.enable = true;
|
2020-03-14 08:49:32 +00:00
|
|
|
|
upower.enable = true;
|
2021-01-03 16:18:57 +00:00
|
|
|
|
mullvad-vpn.enable = true;
|
|
|
|
|
plex = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# user = "mat";
|
|
|
|
|
};
|
2020-01-01 21:12:08 +00:00
|
|
|
|
xserver = {
|
|
|
|
|
enable = true;
|
|
|
|
|
layout = "us";
|
|
|
|
|
|
2020-05-28 17:29:19 +00:00
|
|
|
|
videoDrivers = [ "intel" ];
|
|
|
|
|
deviceSection = ''
|
|
|
|
|
Option "DRI" "3"
|
|
|
|
|
Option "TearFree" "true"
|
2020-01-02 06:23:41 +00:00
|
|
|
|
'';
|
2020-05-28 17:29:19 +00:00
|
|
|
|
useGlamor = true;
|
2020-01-02 06:23:41 +00:00
|
|
|
|
|
2020-01-01 21:12:08 +00:00
|
|
|
|
# Enable touchpad support.
|
|
|
|
|
libinput = {
|
|
|
|
|
enable = true;
|
|
|
|
|
naturalScrolling = true;
|
2020-05-28 17:29:19 +00:00
|
|
|
|
disableWhileTyping = true;
|
2020-01-01 21:12:08 +00:00
|
|
|
|
};
|
2020-01-02 04:44:48 +00:00
|
|
|
|
|
|
|
|
|
desktopManager = {
|
|
|
|
|
session = [{
|
|
|
|
|
name = "home-manager";
|
|
|
|
|
start = ''
|
|
|
|
|
${pkgs.runtimeShell} $HOME/.hm-xsession &
|
|
|
|
|
waitPID=$!
|
|
|
|
|
'';
|
|
|
|
|
}];
|
|
|
|
|
};
|
|
|
|
|
displayManager = {
|
2020-05-28 17:29:19 +00:00
|
|
|
|
defaultSession = "home-manager";
|
2020-11-15 05:08:06 +00:00
|
|
|
|
autoLogin = {
|
2020-01-02 04:44:48 +00:00
|
|
|
|
enable = true;
|
2020-11-15 05:08:06 +00:00
|
|
|
|
user = "mat";
|
2020-01-02 04:44:48 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
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 = {
|
2020-11-15 05:08:06 +00:00
|
|
|
|
logitech.wireless = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# enableGraphical = true;
|
|
|
|
|
};
|
2020-01-03 08:06:12 +00:00
|
|
|
|
opengl = {
|
|
|
|
|
driSupport32Bit = true;
|
|
|
|
|
extraPackages32 = [ pkgs.pkgsi686Linux.libva ];
|
|
|
|
|
};
|
|
|
|
|
pulseaudio = {
|
|
|
|
|
enable = true;
|
|
|
|
|
support32Bit = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
2020-01-01 21:12:08 +00:00
|
|
|
|
|
2021-01-03 16:18:57 +00:00
|
|
|
|
nixpkgs.config.allowUnfree = 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;
|
|
|
|
|
|
2021-01-03 16:18:57 +00:00
|
|
|
|
fileSystems = {
|
|
|
|
|
"/mnt/passport".device = "/dev/sdb";
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-01 21:12:08 +00:00
|
|
|
|
# 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=" ];
|
2021-01-03 16:18:57 +00:00
|
|
|
|
};
|
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?
|
|
|
|
|
|
|
|
|
|
}
|