This commit is contained in:
iFargle 2023-08-23 19:49:37 +09:00
parent 152ffca527
commit 2f0aa5f80a
3 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@
sops-nix.url = "github:Mic92/sops-nix"; # Encrypted secrets in Nix configuration files sops-nix.url = "github:Mic92/sops-nix"; # Encrypted secrets in Nix configuration files
}; };
outputs = { outputs = {
self, nixpkgs, home-manager, lanzaboote, nur, sops-nix, ... self, nixpkgs, home-manager, lanzaboote, nur, sops-nix, ...
}@inputs: }@inputs:
let let
inherit (self) outputs; inherit (self) outputs;

View file

@ -15,5 +15,5 @@
./common/software/gui/firefox.nix ./common/software/gui/firefox.nix
./common/software/gui/thunderbird.nix ./common/software/gui/thunderbird.nix
./hosts/${hostname}/desktops/${desktop} ./hosts/${hostname}/desktops/${desktop}
] ];
} }

View file

@ -18,10 +18,10 @@
# Allow telegraf to talk to other executables it requires: # Allow telegraf to talk to other executables it requires:
systemd.services.telegraf = { systemd.services.telegraf = {
path = with pkgs; [ path = with pkgs; [
lm_sensors # sensors lm_sensors # sensors
linuxPackages.nvidia_x11 # nvidia-smi linuxPackages.nvidia_x11 # nvidia-smi
smartmontools # smartctl smartmontools # smartctl
sudo # sudo sudo # sudo
]; ];
}; };