Commit 71af07e5a399
Changed files (3)
acpi.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ... };
+
+{
+ environment.systemPackages = with pkgs; [
+ acpi
+ ];
+
+ services = {
+ acpid = {
+ enable = true;
+ };
+};
+}
configuration.nix
@@ -9,6 +9,7 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./keyboard.nix
+ ./acpi.nix
./network.nix
./gui.nix
./users.nix
README.md
@@ -0,0 +1,6 @@
+# Nixos configuration
+
+This is my default nixos configuration, commonly used on all my
+nixos-enabled computers.
+
+Thanks to @FaustXVI ๐ผ