mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
27 lines
774 B
Nix
27 lines
774 B
Nix
{ nixpkgs, home-manager, globals, ... }:
|
|
|
|
# System configuration for an Oracle free server
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
specialArgs = { };
|
|
modules = [
|
|
(removeAttrs globals [ "mailServer" ])
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
networking.hostName = "oracle";
|
|
bookServer = "books.masu.rs";
|
|
gui.enable = false;
|
|
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
|
passwordHash = null;
|
|
publicKey =
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s";
|
|
}
|
|
./hardware-configuration.nix
|
|
../common.nix
|
|
../../modules/nixos
|
|
../../modules/hardware/server.nix
|
|
../../modules/services/sshd.nix
|
|
../../modules/services/calibre.nix
|
|
];
|
|
}
|