nixos-config/configuration.nix

241 lines
5.5 KiB
Nix
Raw Normal View History

2024-03-08 22:46:38 +01: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, lib, ... }:
{
2024-08-11 22:48:30 +02:00
imports = [
nixos/desktop/printing
];
2024-03-08 22:46:38 +01:00
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = false;
# Setup keyfile
boot.initrd.secrets = {
"/crypto_keyfile.bin" = null;
};
# Enable grub cryptodisk
boot.loader.grub.enableCryptodisk = true;
boot.initrd.luks.devices."luks-efc0285c-812e-4946-936b-37e737fb72eb".keyFile = "/crypto_keyfile.bin";
# allow crosscompiling for raspberrypi
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
networking.hostName = "lift";
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true;
2024-06-10 19:38:56 +02:00
systemd.network.wait-online.enable = false;
boot.initrd.systemd.network.wait-online.enable = false;
2024-03-08 22:46:38 +01:00
nix.settings.experimental-features = ["nix-command" "flakes"];
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
# Configure console keymap
console.keyMap = "de-latin1-nodeadkeys";
# Enable scanning
hardware.sane.enable = true;
2024-07-05 21:36:38 +02:00
# Workaround for https://github.com/NixOS/nixpkgs/issues/273280
hardware.sane.backends-package = pkgs.sane-backends.overrideAttrs (old: {
configureFlags = (old.configureFlags or []) ++ [
"--disable-locking"
];
});
2024-03-08 22:46:38 +01:00
2024-03-09 22:37:11 +01:00
hardware.opengl.enable = true;
2024-03-08 22:46:38 +01:00
# bluetooth
hardware.bluetooth.enable = true;
# Enable sound with pipewire.
sound.enable = true;
# hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.rothe = {
isNormalUser = true;
description = "rothe";
2024-07-10 22:55:13 +02:00
extraGroups = [ "networkmanager" "wheel" "video" "scanner" "lp" "libvirtd"];
2024-03-08 22:46:38 +01:00
shell = pkgs.fish;
packages = with pkgs; [
chromium
firefox
2024-03-09 22:37:11 +01:00
logseq
2024-03-08 22:46:38 +01:00
thunderbird
];
};
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
ack
avrdude
bind
black # code formatting
calibre
cmake
cryptsetup
curl
dracula-theme
evince
ffmpeg
fish
foot
fzf
gammastep
gcc
gimp
git
glib
gnome.eog
gnome.nautilus
gnome.simple-scan
gnucash
gnumake
gnupg
go
google-cloud-sdk
2024-03-09 22:37:11 +01:00
gopls
2024-03-08 22:46:38 +01:00
gotools
htop
inkscape
ispell
jq
keychain
libreoffice
mosquitto
mypy
nmap
pass-secret-service
pavucontrol
portfolio
pulseaudio
pylint
python311
python311Packages.flake8
python311Packages.ipython
2024-03-09 22:37:11 +01:00
rusti-cal
2024-03-08 22:46:38 +01:00
signal-desktop
silver-searcher
shellcheck
spotify
sqlite
syncthing
tailscale
tmux
tree
unzip
vim-full
vlc
wayland
wayshot
wdisplays
wget
wl-clipboard
xdg-utils
yt-dlp
];
xdg.portal = {
enable = true;
wlr.enable = true;
# gtk portal needed to make gtk apps happy
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
2024-03-09 22:37:11 +01:00
config.common.default = "*";
2024-03-08 22:46:38 +01:00
};
2024-03-16 23:52:53 +01:00
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
light.enable = true;
virt-manager.enable = true;
2024-03-08 22:46:38 +01:00
};
# List services that you want to enable:
2024-03-08 22:50:50 +01:00
services.resolved = {
enable = true;
};
services.pcscd.enable = true;
# xdg-desktop-portal works by exposing a series of D-Bus interfaces
# known as portals under a well-known name
# (org.freedesktop.portal.Desktop) and object path
# (/org/freedesktop/portal/desktop).
# The portal interfaces include APIs for file access, opening URIs,
# printing and others.
services.dbus.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
services.passSecretService.enable = true;
services.tailscale.enable = true;
services.gvfs.enable = true;
services.xserver.displayManager.gdm.enable = true;
2024-08-11 22:48:30 +02:00
2024-03-08 22:50:50 +01:00
services.blueman.enable = true;
services.syncthing = {
enable = true;
user = "rothe";
group = "users";
dataDir = "/home/rothe";
overrideFolders = false;
overrideDevices = false;
};
2024-03-08 22:46:38 +01:00
fonts.packages = with pkgs; [
roboto-mono
];
networking.firewall = {
2024-03-08 22:50:50 +01:00
enable = true;
allowedTCPPorts = [ ];
2024-03-08 22:46:38 +01:00
};
# 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. Its 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).
system.stateVersion = "23.05"; # Did you read the comment?
virtualisation = {
2024-03-16 23:52:53 +01:00
libvirtd.enable = true;
podman.enable = true;
2024-03-08 22:46:38 +01:00
};
2024-07-07 22:27:02 +02:00
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
2024-03-08 22:46:38 +01:00
}