dotfiles/nixos/base.nix

125 lines
2.5 KiB
Nix
Raw Normal View History

2021-07-10 15:26:55 -06:00
{ config, pkgs, options, ... }:
{
imports = [
./users.nix
2021-07-12 16:45:00 -06:00
./fonts.nix
2021-07-11 04:19:34 -06:00
./essential.nix
2021-07-10 15:26:55 -06:00
];
nixpkgs.overlays = [
(import ../dotfiles/config/xmonad/overlay.nix)
];
# Allow all the things
nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.0.2u"
];
# Disabling these waits disables the stuck on boot up issue
systemd.services.systemd-udev-settle.enable = false;
systemd.services.NetworkManager-wait-online.enable = false;
networking.firewall.enable = false;
# Security
programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
services.pcscd.enable = true;
# Networking
environment.etc."ipsec.secrets".text = ''
include ipsec.d/ipsec.nm-l2tp.secrets
'';
2021-07-10 15:26:55 -06:00
networking.networkmanager = {
enable = true;
2021-07-10 17:12:39 -06:00
enableStrongSwan = true;
packages = [ pkgs.networkmanager-l2tp ];
extraConfig = ''
[main]
rc-manager=resolvconf
'';
};
services.avahi = {
enable = true;
nssmdns = true;
publish = {
enable = true;
domain = true;
userServices = true;
};
2021-07-10 15:26:55 -06:00
};
# Audio
sound.enable = true;
hardware.pulseaudio.enable = true;
# Bluetooth
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# Keyboard/Keymap
console.keyMap = "us";
2021-07-10 17:12:39 -06:00
i18n = {
defaultLocale = "en_US.UTF-8";
};
2021-07-10 15:26:55 -06:00
# Update timezone automatically
services.tzupdate.enable = true;
# TODO: Add a comment explaining what this does.
services.gnome.at-spi2-core.enable = true;
# Shell configuration
programs.zsh = {
enable = true;
syntaxHighlighting = {
enable = true;
};
ohMyZsh = {
enable = true;
plugins = [ "git" "sudo" "pip" ];
};
spaceship-prompt.enable = true;
};
2021-07-10 17:12:39 -06:00
services.openssh.enable = true;
services.autorandr.enable = true;
services.locate.enable = true;
virtualisation.docker.enable = true;
hardware.keyboard.zsa.enable = true;
2021-07-10 15:30:43 -06:00
services.xserver = {
exportConfiguration = true;
2021-07-10 15:26:55 -06:00
enable = true;
layout = "us";
2021-07-10 15:26:55 -06:00
desktopManager = {
plasma5.enable = true;
};
windowManager = {
session = [
{
name = "xmonad";
start = ''
/usr/bin/env imalison-xmonad &
waitPID=$!
'';
}
];
};
displayManager = {
sddm = {
enable = true;
};
sessionCommands = ''
systemctl --user import-environment GDK_PIXBUF_MODULE_FILE DBUS_SESSION_BUS_ADDRESS PATH
'';
};
};
}