[moderatio] adjust initial config a bit

This commit is contained in:
2022-10-04 18:44:25 +02:00
parent 263b4d097a
commit 5e0f836cb8

View File

@@ -7,22 +7,18 @@
{ {
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./zfs.nix ./hardware-configuration.nix
./zfs.nix
]; ];
# Define on which hard drive you want to install Grub. # Define on which hard drive you want to install Grub.
# networking.hostName = "nixos"; # Define your hostname. networking.hostName = "moderatio"; # Define your hostname.
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone. # Set your time zone.
# time.timeZone = "Europe/Amsterdam"; time.timeZone = "Europe/Berlin";
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties. # Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8"; # i18n.defaultLocale = "en_US.UTF-8";
@@ -46,27 +42,27 @@
# services.printing.enable = true; # services.printing.enable = true;
# Enable sound. # Enable sound.
# sound.enable = true; sound.enable = true;
# hardware.pulseaudio.enable = true; hardware.pulseaudio.enable = true;
# Enable touchpad support (enabled default in most desktopManager).
# Define a user account. Don't forget to set a password with passwd. #Define a user account. Don't forget to set a password with passwd.
# users.users.jane = { users.users.malobeo = {
# isNormalUser = true; isNormalUser = true;
# extraGroups = [ "wheel" ]; # Enable sudo for the user. extraGroups = [ "wheel" ]; # Enable sudo for the user.
# packages = with pkgs; [ packages = with pkgs; [
# firefox firefox
# thunderbird thunderbird
# ]; ];
# }; };
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
# environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. vim
# wget wget
# ]; git
];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.