133 lines
3.5 KiB
Nix
Executable File
133 lines
3.5 KiB
Nix
Executable File
# 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, ... }:
|
||
let
|
||
profile = import ./profile.nix;
|
||
in
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
./cron-schedule.nix
|
||
./home-manager.nix
|
||
];
|
||
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
networking.hostName = profile.hostname; # Define your hostname.
|
||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||
|
||
# Enable networking
|
||
networking.networkmanager.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Berlin";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "de_DE.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 keymap in X11
|
||
services.xserver.xkb = {
|
||
layout = "de-latin1";
|
||
variant = "";
|
||
};
|
||
|
||
# Podman service setup
|
||
virtualisation.containers.enable = true;
|
||
virtualisation = {
|
||
podman = {
|
||
enable = true;
|
||
|
||
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
||
dockerCompat = true;
|
||
|
||
# Required for containers under podman-compose to be able to talk to each other.
|
||
defaultNetwork.settings.dns_enabled = true;
|
||
};
|
||
};
|
||
|
||
# Configure console keymap
|
||
console.keyMap = "de-latin1";
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
wget
|
||
networkmanager
|
||
epiphany
|
||
nodejs_24
|
||
dive
|
||
podman-tui
|
||
podman-compose
|
||
gmp
|
||
gmp.dev
|
||
pkg-config
|
||
];
|
||
|
||
programs.nix-ld = {
|
||
enable = true;
|
||
libraries = with pkgs; [
|
||
stdenv.cc.cc
|
||
zlib
|
||
gmp
|
||
openssl
|
||
curl
|
||
glib
|
||
gtk3
|
||
libGL
|
||
xorg.libX11
|
||
appimage-run
|
||
];
|
||
};
|
||
|
||
hardware.bluetooth = {
|
||
enable = true;
|
||
powerOnBoot = true;
|
||
settings = {
|
||
General = {
|
||
# Shows battery charge of connected devices on supported
|
||
# Bluetooth adapters. Defaults to 'false'.
|
||
Experimental = true;
|
||
# When enabled other devices can connect faster to us, however
|
||
# the tradeoff is increased power consumption. Defaults to
|
||
# 'false'.
|
||
FastConnectable = true;
|
||
};
|
||
Policy = {
|
||
# Enable all controllers when they are found. This includes
|
||
# adapters present on start as well as adapters that are plugged
|
||
# in later on. Defaults to 'true'.
|
||
AutoEnable = true;
|
||
};
|
||
};
|
||
};
|
||
services.blueman.enable = true;
|
||
|
||
# Enable the OpenSSH daemon.
|
||
services.openssh.enable = true;
|
||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
# 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. It‘s 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 = "25.11";
|
||
}
|