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 = {
system.stateVersion = "23.11";
environment.systemPackages = with pkgs; [
cryptsetup
bcachefs-tools
];
users.users = {
@ -32,7 +32,6 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMuH8L7mQDg86uJME6jndOu4niwLMASuJKpdbJU8Hfet tristan+desktop@vault81.de"
];
# Define a user account. Don't forget to set a password with passwd.
tristand = {
isNormalUser = true;
description = "tristand";
@ -72,7 +71,6 @@
];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
# kernelPackages = pkgs.pkgsx86_64_v3.linuxPackages_cachyos;
kernelModules = [ "kvm-amd" ];
extraModulePackages = [ ];
kernelParams = [
@ -104,8 +102,6 @@
/etc/nixos/ext/ssh/ssh_host_ed25519_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;
concatLists (mapAttrsToList
(name: user:
@ -121,14 +117,13 @@
};
};
# services.btrfs.autoScrub.enable = true;
networking = {
hostName = "nixos-he4";
useDHCP = lib.mkDefault true;
};
hardware = {
enableRedistributableFirmware = true;
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};