nix-files/hosts/by-name/lappy/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./fs.nix
];
sane.roles.client = true;
sane.services.wg-home.enable = true;
sane.services.wg-home.ip = config.sane.hosts.by-name."lappy".wg-home.ip;
2022-11-22 04:31:55 +00:00
# sane.packages.enableDevPkgs = true;
2022-11-02 05:20:05 +00:00
2022-08-01 07:25:08 +00:00
# sane.users.guest.enable = true;
2022-08-01 07:23:49 +00:00
sane.gui.sway.enable = true;
2023-01-06 10:04:51 +00:00
sane.persist.enable = true;
sane.nixcache.enable = true;
boot.loader.efi.canTouchEfiVariables = false;
2022-08-01 07:23:49 +00:00
sane.image.extraBootFiles = [ pkgs.bootpart-uefi-x86_64 ];
2022-06-07 00:35:28 +00:00
sops.secrets.colin-passwd = {
sopsFile = ../../../secrets/lappy.yaml;
neededForUsers = true;
};
# default config: https://man.archlinux.org/man/snapper-configs.5
# defaults to something like:
# - hourly snapshots
# - auto cleanup; keep the last 10 hourlies, last 10 daylies, last 10 monthlys.
services.snapper.configs.nix = {
# TODO: for the impermanent setup, we'd prefer to just do /nix/persist,
# but that also requires setting up the persist dir as a subvol
subvolume = "/nix";
};
2022-06-25 04:10:49 +00:00
# TODO: only here for debugging
# services.ipfs.enable = true;
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion
system.stateVersion = "21.05";
}