summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-10-19 13:05:27 +0200
committerJulian T <julian@jtle.dk>2020-10-19 13:05:27 +0200
commitc701bd92bb5031f9a953fcd8ed01d0167e4d7934 (patch)
treedc12070e9fc739037ce6fec7a83b78e8255ad14e /configuration.nix
parent5ae7d6fb04862512ee7740c7f7100752ef428304 (diff)
Turned of sql, and minor slstatus
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix
index e160a07..a87aacc 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -21,6 +21,9 @@
};
tmpOnTmpfs = true;
supportedFilesystems = [ "ntfs" ];
+ kernel.sysctl = {
+ "kernel.sysrq"=1;
+ };
};
# Enable sound.
@@ -33,7 +36,7 @@
# Thinkpad stuff
acpilight.enable = true;
- bluetooth.enable = true;
+ bluetooth.enable = false;
pulseaudio = {
enable = true;
@@ -167,7 +170,7 @@
blueman.enable = true;
postgresql = {
- enable = true;
+ enable = false;
initialScript = pkgs.writeText "backend-initScript" ''
CREATE ROLE julian WITH LOGIN PASSWORD 'hejmeddig' CREATEDB;
CREATE DATABASE julian;
@@ -184,7 +187,7 @@
};
virtualisation.docker = {
- enable = true;
+ enable = false;
};