mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
27 lines
555 B
Nix
27 lines
555 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.nixngConfigurations.fileStash =
|
|
inputs.nixng.nglib.makeSystem {
|
|
system = "x86_64-linux";
|
|
name = "filestash";
|
|
inherit (inputs) nixpkgs;
|
|
config =
|
|
{ pkgs, ... }:
|
|
{
|
|
dumb-init = {
|
|
enable = true;
|
|
type.services = {};
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
inputs.filestash-nix.overlays.default
|
|
];
|
|
|
|
services.filestash = {
|
|
enable = true;
|
|
package = pkgs.filestash;
|
|
};
|
|
};
|
|
};
|
|
}
|