From 2f0aa5f80a66dc64f5e1f669af004e8dc2c756b5 Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 23 Aug 2023 19:49:37 +0900 Subject: [PATCH] test --- flake.nix | 2 +- home-manager/default.nix | 2 +- nixos/common/services/telegraf.nix | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index e7accfa8..1e4acb69 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ sops-nix.url = "github:Mic92/sops-nix"; # Encrypted secrets in Nix configuration files }; outputs = { - self, nixpkgs, home-manager, lanzaboote, nur, sops-nix, ... + self, nixpkgs, home-manager, lanzaboote, nur, sops-nix, ... }@inputs: let inherit (self) outputs; diff --git a/home-manager/default.nix b/home-manager/default.nix index cf2a84b5..723632aa 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -15,5 +15,5 @@ ./common/software/gui/firefox.nix ./common/software/gui/thunderbird.nix ./hosts/${hostname}/desktops/${desktop} - ] + ]; } \ No newline at end of file diff --git a/nixos/common/services/telegraf.nix b/nixos/common/services/telegraf.nix index ebfd0d80..1f3225af 100644 --- a/nixos/common/services/telegraf.nix +++ b/nixos/common/services/telegraf.nix @@ -18,10 +18,10 @@ # Allow telegraf to talk to other executables it requires: systemd.services.telegraf = { path = with pkgs; [ - lm_sensors # sensors - linuxPackages.nvidia_x11 # nvidia-smi - smartmontools # smartctl - sudo # sudo + lm_sensors # sensors + linuxPackages.nvidia_x11 # nvidia-smi + smartmontools # smartctl + sudo # sudo ]; };