summaryrefslogtreecommitdiff
path: root/sys/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/default.nix')
-rw-r--r--sys/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/default.nix b/sys/default.nix
index ad99009..ef60f43 100644
--- a/sys/default.nix
+++ b/sys/default.nix
@@ -1,6 +1,6 @@
{ self, impermanence }:
{ lib, config, pkgs, modulesPath, ... }:
-{
+with lib; {
imports = [
"${modulesPath}/installer/scan/not-detected.nix"
impermanence.nixosModule
@@ -31,6 +31,11 @@
'';
};
+ # shenvs necesita systemd 251
+ systemd = mkIf (config.system.nixos.release == "22.05") {
+ package = pkgs.unstable.systemd;
+ };
+
time.timeZone = "America/Costa_Rica";
i18n.defaultLocale = "es_CR.UTF-8";