chore: cleanup comments and remove module config descriptions

This commit is contained in:
2026-02-22 02:03:52 +01:00
parent fdd7831732
commit 3c643a411e
11 changed files with 9 additions and 51 deletions

View File

@@ -12,26 +12,20 @@
};
config = lib.mkIf config.desktop.enable {
# Audio
services.pipewire = {
enable = true;
pulse.enable = true;
};
# Bluetooth
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# Security
security.polkit.enable = true;
# D-Bus
services.dbus.enable = true;
# Player control
services.playerctld.enable = true;
# XDG Portals
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
@@ -41,7 +35,6 @@
];
};
# Fonts
fonts.packages = with pkgs; [
font-awesome
nerd-fonts.jetbrains-mono

View File

@@ -9,7 +9,7 @@ let
cfg = config.initrd-ssh;
# Generate keys on new machines: ./scripts/initrd-ssh-keygen.sh
# generate host keys for new machines: ./scripts/initrd-ssh-keygen.sh
keyDir = "/etc/secrets/initrd";
mkIpString =
@@ -32,25 +32,21 @@ in
address = lib.mkOption {
type = lib.types.str;
description = "Static IP address";
example = "10.222.0.247";
};
gateway = lib.mkOption {
type = lib.types.str;
description = "Gateway address";
example = "10.222.0.1";
};
netmask = lib.mkOption {
type = lib.types.str;
default = "255.255.255.0";
description = "Network mask";
};
interface = lib.mkOption {
type = lib.types.str;
description = "Network interface";
example = "enp5s0";
};
};
@@ -58,12 +54,10 @@ in
authorizedKeys = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = keys.sshAuthorizedKeys;
description = "SSH public keys authorized for initrd unlock";
};
networkModule = lib.mkOption {
type = lib.types.str;
description = "Kernel module for network interface (e.g., r8169, e1000e)";
example = "r8169";
};
};

View File

@@ -10,7 +10,6 @@
port = lib.mkOption {
type = lib.types.port;
default = 22;
description = "SSH server port";
};
};
};

View File

@@ -12,7 +12,6 @@
cmdFlags = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
description = "additional command line flags to pass to sway";
};
};
};
@@ -24,23 +23,20 @@
wrapperFeatures.gtk = true;
extraOptions = config.sway.cmdFlags;
extraSessionCommands = ''
# Fix for some Java AWT applications (e.g. Android Studio),
# use this if they aren't displayed properly:
# fix for java awt apps not rendering
export _JAVA_AWT_WM_NONREPARENTING=1
'';
};
environment.systemPackages = with pkgs; [
# default extra packages
brightnessctl
foot
grim
pulseaudio
swayidle
# swaylock - use swaylock-effects instead
# use swaylock-effects instead of swaylock
swaylock-effects
wmenu
# additional things i like
slurp
wofi
wl-clipboard

View File

@@ -14,7 +14,6 @@ in
command = lib.mkOption {
type = lib.types.str;
description = "Session command to launch";
};
};
};