17 lines
266 B
Nix
17 lines
266 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services = {
|
||
|
|
openssh.enable = true;
|
||
|
|
}; # end services
|
||
|
|
|
||
|
|
services.fwupd.enable = true;
|
||
|
|
|
||
|
|
environment = {
|
||
|
|
systemPackages = with pkgs; [
|
||
|
|
devenv
|
||
|
|
direnv
|
||
|
|
]; # end systemPackages
|
||
|
|
}; # end environment
|
||
|
|
} # end file
|