initial commit

This commit is contained in:
2025-06-15 18:21:36 +02:00
commit fd4e2a19cc
23 changed files with 2290 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{ config, pkgs, ... }: {
imports = [
./hardware.nix
../../users/lukas.nix
../../modules/desktop/plasma.nix
../../modules/networking/networkmanager.nix
../../modules/system/locale.nix
../../modules/system/audio.nix
../../modules/system/printing.nix
];
networking.hostName = "segfault-machine";
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Use latest kernel.
boot.kernelPackages = pkgs.linuxPackages_latest;
# luks setup
boot.initrd.luks.devices."luks-4fb890ca-7670-49c3-8bc2-f5041492d454".device = "/dev/disk/by-uuid/4fb890ca-7670-49c3-8bc2-f5041492d454";
# Version festlegen
system.stateVersion = "25.05";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}