mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
Add Logitech support
This commit is contained in:
37
flake.nix
37
flake.nix
@@ -7,19 +7,32 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
czkawka-master.url = "path:/etc/nixos/flakes/czkawka-master";
|
||||
czkawka-master.url = "path:./flakes/czkawka-master";
|
||||
solaar-master.url = "path:./flakes/solaar-master";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, nix-flatpak, czkawka-master, ... }: {
|
||||
nixosConfigurations = {
|
||||
epiquev2 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit czkawka-master; };
|
||||
modules = [
|
||||
./configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
];
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
nix-flatpak,
|
||||
czkawka-master,
|
||||
solaar-master,
|
||||
...
|
||||
}:
|
||||
{
|
||||
nixosConfigurations = {
|
||||
epiquev2 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit czkawka-master;
|
||||
inherit solaar-master;
|
||||
};
|
||||
modules = [
|
||||
./configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user