summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authortom barrett <tom@tombarrett.xyz>2024-05-30 16:02:56 +0200
committertom barrett <tom@tombarrett.xyz>2024-06-02 21:56:18 +0200
commitd6a28baef6549996d5e6bd9c31f77ad508c9f6c9 (patch)
tree0338f12515e71021cc38d2fad2ac35d11090af60 /configuration.nix
parent4f7a32e108e46bed8d2468d176259c255cf0e94b (diff)
hyperlandhyprland
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;
}