Remove unneeded comments

This commit is contained in:
Tristan D. 2024-01-11 10:16:13 +01:00
parent e488b48675
commit 032feeb08a
Signed by: tristan
SSH key fingerprint: SHA256:U7y6eMb7CQDaTHv9XoX6/BaQnPqyxxKc+Xnfcefi6rY

View file

@ -18,9 +18,9 @@
config = { config = {
system.stateVersion = "23.11"; system.stateVersion = "23.11";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cryptsetup cryptsetup
bcachefs-tools
]; ];
users.users = { users.users = {
@ -32,7 +32,6 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMuH8L7mQDg86uJME6jndOu4niwLMASuJKpdbJU8Hfet tristan+desktop@vault81.de" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMuH8L7mQDg86uJME6jndOu4niwLMASuJKpdbJU8Hfet tristan+desktop@vault81.de"
]; ];
# Define a user account. Don't forget to set a password with passwd.
tristand = { tristand = {
isNormalUser = true; isNormalUser = true;
description = "tristand"; description = "tristand";
@ -72,7 +71,6 @@
]; ];
boot = { boot = {
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.linuxPackages_latest;
# kernelPackages = pkgs.pkgsx86_64_v3.linuxPackages_cachyos;
kernelModules = [ "kvm-amd" ]; kernelModules = [ "kvm-amd" ];
extraModulePackages = [ ]; extraModulePackages = [ ];
kernelParams = [ kernelParams = [
@ -104,8 +102,6 @@
/etc/nixos/ext/ssh/ssh_host_ed25519_key /etc/nixos/ext/ssh/ssh_host_ed25519_key
/etc/nixos/ext/ssh/ssh_host_rsa_key /etc/nixos/ext/ssh/ssh_host_rsa_key
]; ];
# this includes the ssh keys of all users in the wheel group, but you can just specify some keys manually
# authorizedKeys = [ "ssh-rsa ..." ];
authorizedKeys = with lib; authorizedKeys = with lib;
concatLists (mapAttrsToList concatLists (mapAttrsToList
(name: user: (name: user:
@ -121,14 +117,13 @@
}; };
}; };
# services.btrfs.autoScrub.enable = true;
networking = { networking = {
hostName = "nixos-he4"; hostName = "nixos-he4";
useDHCP = lib.mkDefault true; useDHCP = lib.mkDefault true;
}; };
hardware = { hardware = {
enableRedistributableFirmware = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}; };