add new host

This commit is contained in:
Vinzenz Schroeter 2025-04-13 21:40:52 +02:00
parent 6d001a11f4
commit d5509e6ea1
9 changed files with 90 additions and 22 deletions

View file

@ -0,0 +1,25 @@
{
config,
pkgs,
...
}: {
# Configure keymap in X11
services.xserver.xkb = {
layout = "de";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
];
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
}

View file

@ -0,0 +1,31 @@
{lib, ...}: {
boot = {
kernelModules = ["kvm-intel"];
extraModulePackages = [];
initrd = {
availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];
kernelModules = [];
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/27eccf93-a79f-4fcb-8588-ec55d913508f";
fsType = "btrfs";
options = ["subvol=@"];
};
"/boot" = {
device = "/dev/disk/by-uuid/85D4-43FC";
fsType = "vfat";
options = ["fmask=0077" "dmask=0077"];
};
};
swapDevices = [
{device = "/dev/disk/by-uuid/bf9d19fb-499b-4bfb-b67d-131fa5bf8259";}
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = true;
}

View file

@ -0,0 +1,10 @@
{
imports = [
../../modules/gnome.nix
../../modules/gaming.nix
../../modules/desktop-environment.nix
../../modules/desktop-hardware.nix
../../home/ronja
];
}