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

65 lines
2.0 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./fs.nix
];
2023-01-20 07:59:11 +00:00
sane.roles.client = true;
sane.services.wg-home.enable = true;
sane.services.wg-home.ip = config.sane.hosts.by-name."desko".wg-home.ip;
2022-08-01 07:23:49 +00:00
sane.services.duplicity.enable = true;
2022-09-14 21:45:07 +00:00
sane.services.nixserve.enable = true;
sane.services.nixserve.sopsFile = ../../../secrets/desko.yaml;
2023-01-06 10:04:51 +00:00
sane.persist.enable = true;
2023-01-20 07:59:11 +00:00
sane.gui.sway.enable = true;
sane.programs.guiApps.suggestedPrograms = [ "desktopGuiApps" ];
boot.loader.efi.canTouchEfiVariables = false;
2022-08-01 07:23:49 +00:00
sane.image.extraBootFiles = [ pkgs.bootpart-uefi-x86_64 ];
2022-06-10 08:43:48 +00:00
# needed to use libimobiledevice/ifuse, for iphone sync
services.usbmuxd.enable = true;
2022-10-24 08:59:10 +00:00
sops.secrets.colin-passwd = {
sopsFile = ../../../secrets/desko.yaml;
2022-10-24 08:59:10 +00:00
neededForUsers = true;
};
2022-12-10 12:27:02 +00:00
# don't enable wifi by default: it messes with connectivity.
systemd.services.iwd.enable = false;
2022-06-29 10:58:11 +00:00
# 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";
# TODO: ALLOW_USERS doesn't seem to work. still need `sudo snapper -c nix list`
extraConfig = ''
ALLOW_USERS = "colin";
'';
};
2022-06-10 08:43:48 +00:00
sops.secrets.duplicity_passphrase = {
sopsFile = ../../../secrets/desko.yaml;
2022-06-10 08:43:48 +00:00
};
2022-06-07 00:35:28 +00:00
2022-07-16 10:10:57 +00:00
programs.steam = {
enable = true;
# not sure if needed: stole this whole snippet from the wiki
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
sane.user.persist.plaintext = [
2022-07-16 10:10:57 +00:00
".steam"
".local/share/Steam"
];
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion
system.stateVersion = "21.05";
}