aboutsummaryrefslogtreecommitdiff
path: root/hosts/desktop
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-29 13:40:07 +0200
committerschererleander <leander@schererleander.de>2025-07-29 13:40:07 +0200
commit69ef958406e557f3f8ac3a23c473b5f8c9248289 (patch)
tree317c16236afc412878a32be56b7b61a538638d27 /hosts/desktop
parentff08947188dddc2349411e7de3bee7d504469381 (diff)
chore: formatting
Diffstat (limited to 'hosts/desktop')
-rw-r--r--hosts/desktop/configuration.nix22
-rw-r--r--hosts/desktop/wooting.nix9
2 files changed, 21 insertions, 10 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 9cee9a7..d35102f 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -1,10 +1,12 @@
-{ config, pkgs, ... }:
+{
+ pkgs,
+ ...
+}:
{
- imports =
- [
- ./hardware-configuration.nix
- ];
+ imports = [
+ ./hardware-configuration.nix
+ ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
@@ -63,7 +65,11 @@
users.users.schererleander = {
isNormalUser = true;
description = "schererleander";
- extraGroups = [ "networkmanager" "wheel" "video" "input" ];
+ extraGroups = [
+ "networkmanager"
+ "wheel"
+ "video"
+ "input"
];
};
@@ -81,8 +87,8 @@
services.openssh.enable = true;
programs.gnupg.agent = {
- enable = true;
- enableSSHSupport = true;
+ enable = true;
+ enableSSHSupport = true;
};
system.stateVersion = "25.05";
diff --git a/hosts/desktop/wooting.nix b/hosts/desktop/wooting.nix
index e6217cd..3f446ba 100644
--- a/hosts/desktop/wooting.nix
+++ b/hosts/desktop/wooting.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
{
options.wooting.enable = lib.mkEnableOption "Enable Wooting udev rules";
@@ -27,4 +32,4 @@
wootility
];
};
-} \ No newline at end of file
+}