flake: unbreak nix flake check
This commit is contained in:
parent
252925cb55
commit
fa8108f522
3 changed files with 20 additions and 22 deletions
|
@ -144,7 +144,7 @@
|
||||||
checks = {formatting = treefmtEval.config.build.check inputs.self;};
|
checks = {formatting = treefmtEval.config.build.check inputs.self;};
|
||||||
|
|
||||||
### nix {run,shell,build}
|
### nix {run,shell,build}
|
||||||
packages = import ./pkgs pkgs;
|
legacyPackages = import ./pkgs pkgs;
|
||||||
|
|
||||||
### nix develop
|
### nix develop
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
|
|
|
@ -30,8 +30,7 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
home.packages =
|
home.packages =
|
||||||
(
|
(with pkgs; [
|
||||||
with pkgs; [
|
|
||||||
amberol
|
amberol
|
||||||
dconf-editor
|
dconf-editor
|
||||||
file-roller
|
file-roller
|
||||||
|
@ -48,9 +47,8 @@
|
||||||
})
|
})
|
||||||
mumble
|
mumble
|
||||||
osu-lazer-bin
|
osu-lazer-bin
|
||||||
]
|
])
|
||||||
)
|
++ (with inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}.scripts; [
|
||||||
++ (with inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.scripts; [
|
|
||||||
lofi
|
lofi
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ in {
|
||||||
options.services.pixivfe = {
|
options.services.pixivfe = {
|
||||||
enable = lib.mkEnableOption "PixivFE, a privacy respecting frontend for Pixiv";
|
enable = lib.mkEnableOption "PixivFE, a privacy respecting frontend for Pixiv";
|
||||||
|
|
||||||
package = lib.mkPackageOption inputs.self.packages.${pkgs.stdenv.hostPlatform.system} "pixivfe" {};
|
package = lib.mkPackageOption inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system} "pixivfe" {};
|
||||||
|
|
||||||
openFirewall = lib.mkEnableOption "open ports in the firewall needed for the daemon to function";
|
openFirewall = lib.mkEnableOption "open ports in the firewall needed for the daemon to function";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue