mirror of https://gitlab.crans.org/nounous/nixos
35 lines
610 B
Nix
35 lines
610 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./locale.nix
|
|
./networking.nix
|
|
./ntp.nix
|
|
./users.nix
|
|
./home.nix
|
|
./sops.nix
|
|
];
|
|
|
|
services.qemuGuest.enable = true;
|
|
boot.kernelParams = [ "console=ttyS0,115200" ];
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# Enable some utility programs.
|
|
programs.git.enable = true;
|
|
programs.htop.enable = true;
|
|
programs.neovim.enable = true;
|
|
programs.screen.enable = true;
|
|
programs.tmux.enable = true;
|
|
programs.vim.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nfs-utils
|
|
shelldap
|
|
];
|
|
}
|