nixos/hosts/Ronin/configuration.nix

22 lines
631 B
Nix
Raw Normal View History

{
lib,
pkgs,
...
}: {
# Setup keyfile
2024-01-30 14:21:50 +00:00
boot.initrd.secrets = {"/crypto_keyfile.bin" = null;};
# Enable swap on luks
2024-01-30 14:21:50 +00:00
boot.initrd.luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd".device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
boot.initrd.luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd".keyFile = "/crypto_keyfile.bin";
environment = {
etc."ppp/options".text = ''
ipcp-accept-remote
'';
2024-02-09 06:39:18 +00:00
systemPackages = with pkgs; [openfortivpn samba];
};
2024-02-27 16:04:23 +00:00
services.ollama.enable = true;
programs.firefox.policies.Homepage.URL = lib.mkForce "https://nucleus.ukaea.uk";
}