Declare programs directly in nixos-apps
parent
9ba86faab8
commit
aaf59f2a6d
10
flake.nix
10
flake.nix
|
@ -11,15 +11,9 @@
|
||||||
nixpkgs.lib.nixosSystem {
|
nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
server-config/configuration.nix
|
./server-config/configuration.nix
|
||||||
|
|
||||||
# Applications that run on this server
|
./nixos-apps
|
||||||
nixos-apps/crueltysquad.com.nix
|
|
||||||
nixos-apps/cutesealfanpage.love.nix
|
|
||||||
nixos-apps/ewanick.com.nix
|
|
||||||
nixos-apps/fancytypist.com.nix
|
|
||||||
nixos-apps/git.ewanick.com.nix
|
|
||||||
nixos-apps/jitsi.crueltysquad.com.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./crueltysquad.com.nix
|
||||||
|
./cutesealfanpage.love.nix
|
||||||
|
./ewanick.com.nix
|
||||||
|
./fancytypist.com.nix
|
||||||
|
./git.ewanick.com.nix
|
||||||
|
./jitsi.crueltysquad.com.nix
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue