nixosModules: move pixelfed package definition into flake lexical scope
This commit is contained in:
parent
a4fedcbc44
commit
c9bd295faa
|
@ -59,7 +59,4 @@ lib.mkIf (config.fediversity.enable && config.fediversity.pixelfed.enable) {
|
||||||
after = [ "ensure-garage.service" ];
|
after = [ "ensure-garage.service" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.pixelfed.package = pkgs.pixelfed.overrideAttrs (old: {
|
|
||||||
patches = (old.patches or [ ]) ++ [ ./pixelfed-group-permissions.patch ];
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
36
flake.nix
36
flake.nix
|
@ -13,13 +13,39 @@
|
||||||
|
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
## Fediversity modules
|
## Fediversity modules
|
||||||
fediversity = ./fediversity;
|
fediversity = {
|
||||||
|
imports = [ ./fediversity ];
|
||||||
|
|
||||||
|
services.pixelfed.package = pkgs.pixelfed.overrideAttrs (old: {
|
||||||
|
patches = (old.patches or [ ]) ++ [ ./fediversity/pixelfed-group-permissions.patch ];
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
## VM-specific modules
|
## VM-specific modules
|
||||||
interactive-vm = ./vm/interactive-vm.nix;
|
interactive-vm = {
|
||||||
mastodon-vm = ./vm/mastodon-vm.nix;
|
imports = [
|
||||||
peertube-vm = ./vm/peertube-vm.nix;
|
./vm/interactive-vm.nix
|
||||||
pixelfed-vm = ./vm/pixelfed-vm.nix;
|
self.nixosModules.fediversity
|
||||||
|
];
|
||||||
|
};
|
||||||
|
mastodon-vm = {
|
||||||
|
imports = [
|
||||||
|
./vm/mastodon-vm.nix
|
||||||
|
self.nixosModules.fediversity
|
||||||
|
];
|
||||||
|
};
|
||||||
|
peertube-vm = {
|
||||||
|
imports = [
|
||||||
|
./vm/peertube-vm.nix
|
||||||
|
self.nixosModules.fediversity
|
||||||
|
];
|
||||||
|
};
|
||||||
|
pixelfed-vm = {
|
||||||
|
imports = [
|
||||||
|
./vm/pixelfed-vm.nix
|
||||||
|
self.nixosModules.fediversity
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ modulesPath, lib, config, ... }: {
|
{ modulesPath, lib, config, ... }: {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../fediversity
|
|
||||||
(modulesPath + "/virtualisation/qemu-vm.nix")
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, modulesPath, ... }: {
|
{ pkgs, modulesPath, ... }: {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../fediversity
|
|
||||||
(modulesPath + "/virtualisation/qemu-vm.nix")
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, modulesPath, ... }: {
|
{ pkgs, modulesPath, ... }: {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../fediversity
|
|
||||||
(modulesPath + "/virtualisation/qemu-vm.nix")
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Reference in a new issue