From 313e18cb6119d4b03580d8d34fbec0c78bca872c Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sat, 17 Dec 2022 20:35:36 +0300 Subject: 2022-12-17 --- nixosConfigurations/iso/default.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 nixosConfigurations/iso/default.nix (limited to 'nixosConfigurations/iso') diff --git a/nixosConfigurations/iso/default.nix b/nixosConfigurations/iso/default.nix new file mode 100644 index 0000000..e435d0b --- /dev/null +++ b/nixosConfigurations/iso/default.nix @@ -0,0 +1,27 @@ +{ + lib, + pkgs, + ... +}: +with lib; { + secrets = mkForce {}; + + nixfiles.modules = { + git.client.enable = true; + openssh = { + client.enable = true; + server = { + enable = true; + port = 22; + }; + }; + }; + + programs.mtr.enable = true; + + services.getty.autologinUser = mkForce my.username; + + environment.noXlibs = false; + + nixpkgs.config.allowBroken = true; +} -- cgit v1.2.3