summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix15
1 files changed, 2 insertions, 13 deletions
diff --git a/configuration.nix b/configuration.nix
index e5bd3b5..6def88f 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -1,8 +1,4 @@
-{
- config,
- pkgs,
- ...
-}: {
+{pkgs, ...}: {
imports = [./hardware-configuration.nix];
nix.settings = {
experimental-features = ["nix-command" "flakes"];
@@ -39,14 +35,7 @@
};
};
fonts.packages = [pkgs.hermit];
- services = {
- openssh.enable = true;
- xserver = {
- enable = true;
- autorun = false;
- displayManager.startx.enable = true;
- };
- };
+ services.openssh.enable = true;
system.stateVersion = "23.11";
zramSwap.enable = true;
}