diff options
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 28 |
1 files changed, 20 insertions, 8 deletions
@@ -184,7 +184,9 @@ pkgs.conntrack-tools pkgs.coreutils pkgs.cpio + pkgs.csvkit pkgs.curl + pkgs.debootstrap pkgs.diffutils pkgs.dig pkgs.dmidecode @@ -225,6 +227,8 @@ pkgs.p7zip pkgs.parted pkgs.pciutils + pkgs.perf + pkgs.perl540Packages.ArchiveZip pkgs.procps pkgs.progress pkgs.psmisc @@ -241,7 +245,9 @@ pkgs.strace pkgs.sysstat pkgs.tcpdump + pkgs.tmux pkgs.tftp-hpa + pkgs.tlp pkgs.traceroute pkgs.tree pkgs.tshark @@ -267,14 +273,20 @@ nixpkgs.config.allowUnfree = true; - services.openssh = { - enable = true; - openFirewall = true; + services = { + fwupd.enable = true; - settings = { - PasswordAuthentication = false; - KbdInteractiveAuthentication = false; + openssh = { + enable = true; + openFirewall = true; + + settings = { + PasswordAuthentication = false; + KbdInteractiveAuthentication = false; + }; }; + + udisks2.enable = true; }; users.users = { @@ -282,8 +294,8 @@ root.openssh.authorizedKeys.keys = [ (builtins.readFile ./hosts/common/users/nipsy/keys/id_arrakis.pub) ]; }; }) + { nixpkgs.hostPlatform = "x86_64-linux"; } ]; - system = "x86_64-linux"; }; kaitain = nixpkgs.lib.nixosSystem rec { @@ -339,8 +351,8 @@ root.openssh.authorizedKeys.keys = [ (builtins.readFile ./hosts/common/users/nipsy/keys/id_arrakis.pub) ]; }; }) + { nixpkgs.hostPlatform = "x86_64-linux"; } ]; - system = "x86_64-linux"; }; richese = nixpkgs.lib.nixosSystem rec { |
