nixos-configuration/vinzenz-pc3.nix

86 lines
2.5 KiB
Nix
Raw Normal View History

2023-09-02 14:53:25 +02:00
{
config,
lib,
pkgs,
...
}: {
2023-09-09 14:01:51 +02:00
imports = [./my/default.nix];
2023-09-02 14:41:58 +02:00
2023-09-09 14:57:55 +02:00
config = {
networking.hostName = "vinzenz-pc3";
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
my.kde.enable = true;
my.users = {
vinzenz.enable = true;
ronja.enable = true;
2023-09-02 14:53:25 +02:00
};
2023-09-09 14:57:55 +02:00
users.groups."games" = {
members = ["vinzenz" "ronja"];
2023-09-03 16:44:26 +02:00
};
2023-09-09 14:57:55 +02:00
users.users.vinzenz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
];
2023-09-05 19:24:39 +02:00
2023-09-09 14:57:55 +02:00
boot = {
initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "sd_mod"]; # "usb_storage"
initrd.kernelModules = [];
kernelModules = ["kvm-amd"];
extraModulePackages = [];
loader.efi.efiSysMountPoint = "/boot";
2023-09-02 14:53:25 +02:00
};
2023-09-09 14:57:55 +02:00
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
fsType = "btrfs";
options = ["subvol=@"];
};
"/home" = {
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
fsType = "btrfs";
options = ["subvol=@home"];
};
"/games" = {
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
fsType = "btrfs";
options = ["subvol=@games"];
};
"/boot" = {
device = "/dev/disk/by-uuid/AF67-8F16";
fsType = "vfat";
};
2023-09-09 13:36:21 +02:00
2023-09-09 14:57:55 +02:00
"/mnt/nixos_btrfs_root" = {
# subvolume with id 5 is always the root volume
# this is convenient for managing the flat subvolume hierarchy
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
fsType = "btrfs";
options = ["subvolid=5"];
};
"/mnt/ssd2" = {
device = "/dev/disk/by-uuid/6b2a647d-c68e-4c07-85bf-c9bfc5db7e8a";
fsType = "ext4";
};
2023-09-02 14:53:25 +02:00
};
2023-09-09 14:57:55 +02:00
swapDevices = [];
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
2023-08-27 13:28:13 +02:00
}