111 lines
2.9 KiB
Nix
111 lines
2.9 KiB
Nix
{ withSystem, self, inputs, ... }:
|
|
let
|
|
username = "john";
|
|
hostname = "john-pc-ubuntu";
|
|
|
|
testHost = "soteria"; # which host to test build
|
|
testTarget = "test-nix";
|
|
in
|
|
{
|
|
flake.modules.homeManager."${hostname}" = { config, pkgs, lib, ... }:
|
|
let
|
|
selfPkgs = inputs.self.packages.${pkgs.stdenv.hostPlatform.system};
|
|
resticPasswordFile = "${config.xdg.configHome}/restic/password.txt";
|
|
flakeDir = "${config.xdg.configHome}/home-manager/jsl-dendritic";
|
|
in
|
|
{
|
|
imports = with inputs.self.modules.homeManager; [
|
|
rebuild
|
|
john
|
|
mtls
|
|
restic
|
|
docker
|
|
desktop
|
|
step-client
|
|
mysops
|
|
# zed-editor
|
|
# myPackage
|
|
# myStepClient
|
|
];
|
|
# TODO: make this more restrictive, rather than allowing all unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
home.packages = with pkgs; [
|
|
nil # Nix language server
|
|
selfPkgs.jsl-zsh
|
|
(inputs.self.wrappers.test-push.apply {
|
|
inherit pkgs flakeDir;
|
|
host = testHost;
|
|
target = testTarget;
|
|
}).wrapper
|
|
];
|
|
|
|
homeManagerFlakeDir = flakeDir;
|
|
docker.enable = true;
|
|
ssh-new = {
|
|
certificates.enable = true;
|
|
};
|
|
# ssh = {
|
|
# matchSets = {
|
|
# certs = true;
|
|
# appdaemon = true;
|
|
# homelab = true;
|
|
# dev = true;
|
|
# tailscale = true;
|
|
# };
|
|
# };
|
|
|
|
# This provides the keys at build time and will be included in the nix store
|
|
sops.defaultSopsFile = ../../../keys/secrets.yaml;
|
|
|
|
# This will provide the edit-secrets script targeting this file
|
|
mysops.hostSecretFile = "${config.xdg.configHome}/home-manager/jsl-dendritic/keys/secrets.yaml";
|
|
|
|
sops.secrets."restic_password" = {
|
|
path = resticPasswordFile;
|
|
mode = "0400";
|
|
sopsFile = ./secrets.yaml;
|
|
};
|
|
restic = {
|
|
passwordFile = resticPasswordFile;
|
|
OnCalendar = "*:0/15";
|
|
paths = [ "${config.xdg.userDirs.documents}" "/conf" ];
|
|
exclude = [
|
|
"/home/*/Pictures"
|
|
"/home/*/Videos"
|
|
"/home/*/go"
|
|
"/home/*/snap"
|
|
"/home/john/john-nas"
|
|
];
|
|
};
|
|
# mtls = {
|
|
# enable = true;
|
|
# subject = hostname;
|
|
# san = [
|
|
# "${hostname}"
|
|
# "192.168.1.85"
|
|
# "spiffe://john-stream.com/ubuntu"
|
|
# ];
|
|
# lifetime = "1h";
|
|
# renew.onCalendar = "*:1/10";
|
|
# };
|
|
};
|
|
|
|
flake.homeConfigurations."john@john-pc-ubuntu" = inputs.home-manager.lib.homeManagerConfiguration {
|
|
pkgs = import inputs.nixpkgs.outPath {
|
|
localSystem.system = "x86_64-linux";
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
|
problems.handlers.sublimetext4.broken = "ignore";
|
|
};
|
|
};
|
|
modules = [ inputs.self.modules.homeManager."${hostname}" ];
|
|
};
|
|
}
|