tset
This commit is contained in:
parent
fbd8f13979
commit
417f88fe0c
3 changed files with 4 additions and 8 deletions
|
@ -57,7 +57,7 @@
|
|||
# Password set via wpa_supplicant command
|
||||
# https://nixos.org/manual/nixos/unstable/index.html#sec-wireless
|
||||
wireless.networks = { # Use nix-sops for this
|
||||
copeland-5g.psk = "5b43054e4c927ecd94cf19103fa80a7ce99ca69f27cdd75026be3c261d7f78cb";
|
||||
copeland-5g.psk = config.sops.secrets.wireless.copeland-5g.psk.path;
|
||||
};
|
||||
|
||||
enableIPv6 = false;
|
||||
|
|
|
@ -16,9 +16,6 @@
|
|||
lanzaboote.url = "github:nix-community/lanzaboote";
|
||||
lanzaboote.inputs.nixpkgs.follows = "stable-nixpkgs";
|
||||
|
||||
# Firefox Overlay
|
||||
# moz_overlay.url = "github:mozilla/nixpkgs-mozilla";
|
||||
|
||||
# Nix User Repository
|
||||
nur.url = "github:nix-community/NUR";
|
||||
|
||||
|
@ -69,7 +66,6 @@
|
|||
home-manager.users.albert = import ./users/albert/home.nix;
|
||||
home-manager.users.root = import ./users/root/home.nix;
|
||||
nixpkgs.overlays = [
|
||||
# moz_overlay.overlay
|
||||
nur.overlay
|
||||
];
|
||||
}
|
||||
|
|
|
@ -27,10 +27,10 @@
|
|||
filename = "/tmp/positions.yaml";
|
||||
};
|
||||
clients = [{
|
||||
url = "https://loki.sysctl.io/loki/api/v1/push";
|
||||
url = config.sops.secrets.promtail.url.path;
|
||||
basic_auth = {
|
||||
username = "loki-sa";
|
||||
password = null; # https://nixos.wiki/wiki/Comparison_of_secret_managing_schemes;
|
||||
username = config.sops.secrets.promtail.user.path;
|
||||
password = config.sops.secrets.promtail.pass.path;
|
||||
};
|
||||
}];
|
||||
scrape_configs = [{
|
||||
|
|
Loading…
Reference in a new issue