nixos-config/hosts/dell-5590/nixos/configuration.nix

193 lines
4.6 KiB
Nix
Raw Normal View History

2021-12-16 13:04:27 +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, ... }:
{
imports =
[ # Include the results of the hardware scan.
<nixpkgs/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix>
./hardware-configuration.nix
./services.nix
./packages.nix
2023-01-08 13:22:17 +00:00
# ./vpn.nix
2022-08-05 12:16:06 +00:00
../modules/prometheus-node.nix
2021-12-16 13:04:27 +00:00
];
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
programs = {
zsh.enable = true;
2022-10-15 16:04:27 +00:00
fish = {
enable = true;
shellAliases = {
ll = "ls -l";
ls = "lsd";
vi = "nvim";
vim = "nvim";
cat = "bat";
sysrs = "sudo nixos-rebuild switch";
sysup = "sudo nixos-rebuild switch --upgrade";
sysclean = "sudo nix-collect-garbage -d; and sudo nix-store --optimise";
};
};
ssh = {
setXAuthLocation = true;
forwardX11 = true;
};
};
sound.enable = true;
# hardware
hardware = {
logitech = {
wireless.enable = true;
wireless.enableGraphical = true;
};
pulseaudio = {
enable = true;
extraConfig =''
load-module module-switch-on-connect
2023-01-08 13:22:17 +00:00
extraModules = [ pkgs.pulseaudio-modules-bt ];
'';
2023-01-08 13:22:17 +00:00
package = pkgs.pulseaudioFull;
};
sane = {
enable = true;
brscan4 = {
enable = true;
};
dsseries = {
enable = true;
};
};
bluetooth = {
enable = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
opengl = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver # LIBVA_DRIVER_NAME=iHD
vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
vaapiVdpau
libvdpau-va-gl
];
};
};
2021-12-16 13:04:27 +00:00
# Video acceleration
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
2022-02-10 15:09:13 +00:00
2021-12-16 13:04:27 +00:00
security = {
apparmor.enable = true;
pam = {
u2f = {
enable = true;
control = "requisite";
};
services = {
login.u2fAuth = true;
lightdm.u2fAuth = true;
};
};
};
2021-12-16 13:04:27 +00:00
networking.hostName = "Alexos"; # Define your hostname.
# Set your time zone.
time.timeZone = "Europe/Paris";
networking = {
dhcpcd.enable = true;
networkmanager = {
enable = true;
unmanaged = [ "interface-name:ve-*" ];
};
firewall.enable = true;
firewall.allowedTCPPorts = [ 24800 6600 ];
2021-12-16 13:04:27 +00:00
};
i18n.defaultLocale = "fr_FR.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "fr";
};
fonts = {
fontDir.enable = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
corefonts
vistafonts
powerline-fonts
2021-12-16 13:04:27 +00:00
inconsolata
terminus_font
proggyfonts
dejavu_fonts
font-awesome
nerdfonts
source-code-pro
source-sans-pro
source-serif-pro
2022-09-14 18:08:11 +00:00
iosevka
roboto-mono
fira-code
2021-12-16 13:04:27 +00:00
];
};
# run garbage collector at 19h00 everyday
# and remove stuff older than 60 days
nix.gc.automatic = true;
nix.gc.dates = "19:00";
nix.gc.persistent = true;
nix.gc.options = "--delete-older-than 60d";
# clean /tmp at boot
boot.cleanTmpDir = true;
nixpkgs.config = {
allowUnfree = true;
};
2021-12-16 13:04:27 +00:00
system.stateVersion = "21.05"; # Did you read the comment?
2022-09-14 18:08:11 +00:00
environment.variables = {
EDITOR = "vim";
BROWSER = "firefox";
LESS = "--quit-if-one-screen --RAW-CONTROL-CHARS";
TERMINAL = "xfce4-terminal";
PRIVATE_BROWSER = "firefox -private";
};
2023-01-08 13:22:17 +00:00
environment.systemPackages = [ pkgs.openvpn_24 ];
2021-12-16 13:04:27 +00:00
users = {
users.ntp.group = "ntp";
groups.ntp = {};
defaultUserShell = "/run/current-system/sw/bin/fish";
2023-02-14 09:05:06 +00:00
extraUsers.oem = {
isNormalUser = true;
home = "/home/oem";
description = "oem";
extraGroups = [ "wheel" "networkmanager" "plocate" ];
hashedPassword = "$6$TWZqEbF3s7f4Yx8s$xsUheHLM75u1IdvD/6AWnk9c8El2FgGiU5C4mnZddWl8hFaGF2nPojHqvj2l7muJwQ6c8f7A4MRpAKh7PezuN/";
};
2021-12-16 13:04:27 +00:00
extraUsers.alexandre = {
isNormalUser = true;
home = "/home/alexandre";
description = "alexandre";
extraGroups = [ "wheel" "networkmanager" "docker" "libvirtd" "qemu-libvirtd" "vboxusers" "scanner" "lp" "plocate" ];
2021-12-16 13:04:27 +00:00
hashedPassword = "$6$7m77oPQxa$W9YnRLo1X2eqztBHwpoH8diHGkBno5O39AMyL9Qm8y8I6uW63H2Nwx4p239OG5zhOxA8J1lZvHTQ3hKPSP9mT/";
};
};
}