Various formatting changes

This commit is contained in:
2024-11-07 09:59:01 +01:00
parent 8b68c27a1f
commit dea19e0b3b
5 changed files with 63 additions and 30 deletions

View File

@@ -44,29 +44,25 @@
LC_TELEPHONE = "nl_NL.UTF-8";
LC_TIME = "nl_NL.UTF-8";
};
# Enable the X11 windowing system.
# Enable the X11 windowing system
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
# Enable the GNOME Desktop Environment
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "intl";
};
# Configure console keymap
console.keyMap = "us-acentos";
# Enable CUPS to print documents.
# Enable CUPS to print documents
services.printing.enable = true;
# Enable sound with pipewire.
# Enable sound with pulse (pipewire)
hardware.pulseaudio.enable = false;
# Enable realtimekit (pulse requirement)
security.rtkit.enable = true;
# Configure pipewire service
services.pipewire = {
enable = true;
alsa.enable = true;
@@ -106,5 +102,4 @@
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment?
}