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

26 lines
436 B
Nix
Raw Normal View History

2021-09-10 07:23:02 +00:00
{ 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
2023-02-06 11:58:32 +00:00
rxvt-unicode-unwrapped.terminfo
2021-09-10 07:23:02 +00:00
];
services.openssh.enable = true;
2023-02-06 11:58:32 +00:00
system.stateVersion = "22.05";
2021-09-10 07:23:02 +00:00
}