Evie Litherland-Smith
0682bb8cdb
Remove all home-manager config and related files Slight change of layout that makes more sense with new scope
18 lines
474 B
Nix
18 lines
474 B
Nix
{pkgs, ...}: {
|
|
imports = [./laptop.nix];
|
|
boot.initrd = {
|
|
secrets = {"/crypto_keyfile.bin" = null;};
|
|
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
|
|
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
|
|
keyFile = "/crypto_keyfile.bin";
|
|
};
|
|
};
|
|
environment = {
|
|
etc."ppp/options".text = ''
|
|
ipcp-accept-remote
|
|
'';
|
|
systemPackages = with pkgs; [openfortivpn samba];
|
|
};
|
|
services.ollama.enable = true;
|
|
}
|