206 lines
5.8 KiB
Nix
206 lines
5.8 KiB
Nix
# 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, pkgs-unstable, ... }:
|
||
|
||
let
|
||
optionalPkgs = import ../optional-packages.nix { inherit pkgs; };
|
||
in
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
networking.hostName = "nixLap"; # Define your hostname.
|
||
|
||
# Enable nix flakes
|
||
nix.settings.experimental-features = ["nix-command" "flakes" ];
|
||
|
||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||
|
||
# Configure network proxy if necessary
|
||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||
|
||
# Enable networking
|
||
networking.networkmanager.enable = true;
|
||
|
||
boot.resumeDevice = "/dev/disk/by-uuid/3cdc496b-6116-4f3a-a73e-3afd3cf742ff";
|
||
powerManagement.enable = true;
|
||
services.power-profiles-daemon.enable = true;
|
||
# Suspend first then hibernate when closing the lid
|
||
services.logind.lidSwitch = "suspend-then-hibernate";
|
||
# Hibernate on power button pressed
|
||
services.logind.powerKey = "hibernate";
|
||
services.logind.powerKeyLongPress = "poweroff";
|
||
|
||
# Suspend first
|
||
boot.kernelParams = ["mem_sleep_default=freeze" "resume_offset=0"];
|
||
|
||
# Define time delay for hibernation
|
||
systemd.sleep.extraConfig = ''
|
||
HibernateDelaySec=30m
|
||
SuspendState=mem
|
||
'';
|
||
|
||
|
||
|
||
# Start the driver at boot
|
||
systemd.services.fprintd = {
|
||
wantedBy = [ "multi-user.target" ];
|
||
serviceConfig.Type = "simple";
|
||
};
|
||
|
||
# Install the driver
|
||
services.fprintd.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Berlin";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_GB.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";
|
||
};
|
||
|
||
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;
|
||
};
|
||
};
|
||
programs.virt-manager.enable = true;
|
||
virtualisation.libvirtd.enable = true;
|
||
virtualisation.spiceUSBRedirection.enable = true;
|
||
# Ensuer same pathe for uefi files
|
||
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
|
||
|
||
# Enable the X11 windowing system.
|
||
# You can disable this if you're only using the Wayland session.
|
||
services.xserver.enable = true;
|
||
|
||
# Enable the KDE Plasma Desktop Environment.
|
||
services.displayManager.sddm.enable = true;
|
||
services.desktopManager.plasma6.enable = true;
|
||
|
||
# Configure keymap in X11
|
||
services.xserver.xkb = {
|
||
layout = "de";
|
||
variant = "";
|
||
};
|
||
|
||
# Configure console keymap
|
||
console.keyMap = "de";
|
||
|
||
# Enable CUPS to print documents.
|
||
services.printing.enable = true;
|
||
|
||
# Enable sound with pipewire.
|
||
services.pulseaudio.enable = false;
|
||
security.rtkit.enable = true;
|
||
services.pipewire = {
|
||
enable = true;
|
||
alsa.enable = true;
|
||
alsa.support32Bit = true;
|
||
pulse.enable = true;
|
||
# If you want to use JACK applications, uncomment this
|
||
#jack.enable = true;
|
||
|
||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||
# no need to redefine it in your config for now)
|
||
#media-session.enable = true;
|
||
};
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
# services.xserver.libinput.enable = true;
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.someone = {
|
||
isNormalUser = true;
|
||
description = "someone";
|
||
extraGroups = [ "networkmanager" "wheel" "libvirtd"];
|
||
packages = with pkgs; [];
|
||
shell = pkgs.zsh;
|
||
};
|
||
|
||
# Add zsh
|
||
programs.zsh = {
|
||
enable = true;
|
||
enableCompletion = true;
|
||
autosuggestions.enable = true;
|
||
syntaxHighlighting.enable = true;
|
||
|
||
shellAliases = {
|
||
ll = "ls -l";
|
||
};
|
||
};
|
||
|
||
# Allow unfree packages
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
# List packages installed in system profile. To search, run:
|
||
# $ nix search wget
|
||
environment.systemPackages = with pkgs; [
|
||
starship # zsh greeter
|
||
fzf # terminal fuzzy finder
|
||
|
||
vim
|
||
wget
|
||
git
|
||
docker-compose
|
||
librewolf
|
||
rnote
|
||
gimp3
|
||
vscode
|
||
nextcloud-client
|
||
] ++ optionalPkgs;
|
||
# 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;
|
||
# };
|
||
|
||
# List services that you want to enable:
|
||
|
||
# Enable the OpenSSH daemon.
|
||
# services.openssh.enable = true;
|
||
|
||
# Open ports in the firewall.
|
||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
# Or disable the firewall altogether.
|
||
# networking.firewall.enable = false;
|
||
|
||
# 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.05"; # Did you read the comment?
|
||
|
||
}
|