clean <host>/default.nix comments

This commit is contained in:
Emile Clark-Boman 2025-08-01 12:32:52 +10:00
parent d0cc0504fa
commit af31d0273c
2 changed files with 18 additions and 19 deletions

View file

@ -88,14 +88,12 @@ in {
};
# ----- NETWORKING SECTION -----
networking.hostName = "lolcathost";
networking.networkmanager.enable = true;
networking = {
hostName = "lolcathost";
networkmanager.enable = true;
# Open ports in the firewall.
#networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = false;
firewall.enable = false;
};
# ----- SERVICES -----
services = {
@ -104,13 +102,14 @@ in {
# sddm relies on pkgs.libsForQt5.qt5.qtgraphicaleffects
sddm = {
enable = true;
wayland.enable = true; # enable experimental sddm support for wayland
wayland.enable = true; # experimental
theme = "corners";
};
defaultSession = "hyprland";
};
# Enable sound
# Multimedia Framework
# With backwards compatability for alsa/pulseaudio/jack
pipewire = {
enable = true;
wireplumber.enable = true;
@ -121,7 +120,7 @@ in {
jack.enable = true;
};
# Enable touchpad support
# Touchpad support
libinput.enable = true;
tumbler.enable = true; # Thunar image thumbnail support

View file

@ -71,28 +71,28 @@ in {
};
# ----- NETWORKING SECTION -----
networking.hostName = "myputer";
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
networking = {
hostName = "myputer";
networkmanager.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = true;
firewall.enable = true;
};
# ----- SERVICES -----
services = {
# Set display manager (login screen)
displayManager = {
# sddm relies on pkgs.libsForQt5.qt5.qtgraphicaleffects
sddm = {
enable = true;
wayland.enable = true; # enable experimental sddm support for wayland
wayland.enable = true; # experimental
theme = "corners";
};
defaultSession = "hyprland";
};
# Enable sound
# Multimedia Framework
# With backwards compatability for alsa/pulseaudio/jack
pipewire = {
enable = true;
wireplumber.enable = true;