Commit 71af07e5a399

Vincent Demeester <vincent@sbr.pm>
2016-09-13 10:16:16
Add acpi.nix and a README ๐Ÿ‘ผ
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 9e06ab3
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 ๐Ÿ‘ผ