mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
23 lines
473 B
Nix
23 lines
473 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;
|
|
};
|
|
};
|
|
};
|
|
}
|