mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
remove @ pattern
This commit is contained in:
39
flake.nix
39
flake.nix
@@ -44,7 +44,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
inputs@{
|
{
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
nixpkgs-unstable,
|
nixpkgs-unstable,
|
||||||
@@ -53,9 +53,18 @@
|
|||||||
agenix,
|
agenix,
|
||||||
retiolum,
|
retiolum,
|
||||||
nixinate,
|
nixinate,
|
||||||
flake-utils,
|
menstruation-backend,
|
||||||
|
menstruation-telegram,
|
||||||
|
scripts,
|
||||||
|
tinc-graph,
|
||||||
|
recht,
|
||||||
|
autorenkalender,
|
||||||
|
wallpaper-generator,
|
||||||
|
telebots,
|
||||||
|
stockholm,
|
||||||
nix-index-database,
|
nix-index-database,
|
||||||
stylix,
|
stylix,
|
||||||
|
voidrice,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@@ -155,9 +164,11 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
niveumPackages = inputs.self.packages.${system};
|
niveumPackages = self.packages.${system};
|
||||||
niveumLib = inputs.self.lib;
|
niveumLib = self.lib;
|
||||||
inherit inputs;
|
inputs = {
|
||||||
|
inherit tinc-graph self telebots menstruation-telegram menstruation-backend scripts agenix recht autorenkalender nixpkgs wallpaper-generator;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
ful = nixpkgs.lib.nixosSystem rec {
|
ful = nixpkgs.lib.nixosSystem rec {
|
||||||
@@ -166,13 +177,13 @@
|
|||||||
modules = [
|
modules = [
|
||||||
systems/ful/configuration.nix
|
systems/ful/configuration.nix
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
inputs.self.nixosModules.passport
|
self.nixosModules.passport
|
||||||
inputs.self.nixosModules.panoptikon
|
self.nixosModules.panoptikon
|
||||||
inputs.self.nixosModules.go-webring
|
self.nixosModules.go-webring
|
||||||
inputs.stockholm.nixosModules.reaktor2
|
stockholm.nixosModules.reaktor2
|
||||||
retiolum.nixosModules.retiolum
|
retiolum.nixosModules.retiolum
|
||||||
nur.modules.nixos.default
|
nur.modules.nixos.default
|
||||||
{ nixpkgs.overlays = [ inputs.stockholm.overlays.default ]; }
|
{ nixpkgs.overlays = [ stockholm.overlays.default ]; }
|
||||||
{
|
{
|
||||||
_module.args.nixinate = {
|
_module.args.nixinate = {
|
||||||
host = "ful";
|
host = "ful";
|
||||||
@@ -209,8 +220,8 @@
|
|||||||
specialArgs = niveumSpecialArgs system;
|
specialArgs = niveumSpecialArgs system;
|
||||||
modules = [
|
modules = [
|
||||||
systems/makanek/configuration.nix
|
systems/makanek/configuration.nix
|
||||||
inputs.self.nixosModules.telegram-bot
|
self.nixosModules.telegram-bot
|
||||||
inputs.self.nixosModules.passport
|
self.nixosModules.passport
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
retiolum.nixosModules.retiolum
|
retiolum.nixosModules.retiolum
|
||||||
nur.modules.nixos.default
|
nur.modules.nixos.default
|
||||||
@@ -387,12 +398,12 @@
|
|||||||
wttr = pkgs.callPackage packages/wttr.nix {}; # TODO upstream
|
wttr = pkgs.callPackage packages/wttr.nix {}; # TODO upstream
|
||||||
|
|
||||||
booksplit = wrapScript {
|
booksplit = wrapScript {
|
||||||
script = inputs.voidrice.outPath + "/.local/bin/booksplit";
|
script = voidrice.outPath + "/.local/bin/booksplit";
|
||||||
name = "booksplit";
|
name = "booksplit";
|
||||||
packages = [pkgs.ffmpeg pkgs.glibc.bin];
|
packages = [pkgs.ffmpeg pkgs.glibc.bin];
|
||||||
};
|
};
|
||||||
tag = wrapScript {
|
tag = wrapScript {
|
||||||
script = inputs.voidrice.outPath + "/.local/bin/tag";
|
script = voidrice.outPath + "/.local/bin/tag";
|
||||||
name = "tag";
|
name = "tag";
|
||||||
packages = [pkgs.ffmpeg];
|
packages = [pkgs.ffmpeg];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user