stockholm/lass/1systems/lasspi/config.nix

27 lines
455 B
Nix
Raw Normal View History

2021-09-10 07:23:02 +00:00
with import <stockholm/lib>;
{ config, lib, pkgs, ... }:
let
in
{
imports = [
<stockholm/lass>
<stockholm/lass/2configs>
<stockholm/lass/2configs/retiolum.nix>
];
krebs.build.host = config.krebs.hosts.lasspi;
networking = {
networkmanager = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
vim
rxvt_unicode.terminfo
];
services.openssh.enable = true;
system.stateVersion = "21.05";
}