my nix configs for my servers and desktop

fix agenix

Changed files
+11 -2
hosts
buer
focalor
valefar
+8
flake.nix
···
valefar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/valefar
lix-module.nixosModules.default
···
buer = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/buer
···
valefar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
+
specialArgs = {
+
inherit inputs;
+
system = "x86_64-linux";
+
};
modules = [
./hosts/valefar
lix-module.nixosModules.default
···
buer = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
+
specialArgs = {
+
inherit inputs;
+
system = "x86_64-linux";
+
};
modules = [
./hosts/buer
+1
hosts/buer/default.nix
···
environment.systemPackages = with pkgs; [
#lm_sensors
#code-server
];
virtualisation.docker = {
···
environment.systemPackages = with pkgs; [
#lm_sensors
#code-server
+
inputs.agenix.packages.x86_64-linux.default
];
virtualisation.docker = {
+1 -1
hosts/focalor/default.nix
···
environment.systemPackages = with pkgs; [
#lm_sensors
code-server
-
agenix.packages.x86_64-linux.default
];
environment.sessionVariables.WLR_RENDERER = "vulkan";
···
environment.systemPackages = with pkgs; [
#lm_sensors
code-server
+
inputs.agenix.packages.x86_64-linux.default
];
environment.sessionVariables.WLR_RENDERER = "vulkan";
+1 -1
hosts/valefar/default.nix
···
environment.systemPackages = with pkgs; [
lm_sensors
code-server
-
agenix.packages.x86_64-linux.default
];
virtualisation.docker = {
···
environment.systemPackages = with pkgs; [
lm_sensors
code-server
+
inputs.agenix.packages.x86_64-linux.default
];
virtualisation.docker = {