✨ add homestar
This commit is contained in:
parent
d8f19c487a
commit
c9692d70eb
1796
flake.lock
generated
1796
flake.lock
generated
File diff suppressed because it is too large
Load Diff
@ -37,6 +37,12 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Fission packages
|
||||||
|
fission = {
|
||||||
|
url = "github:fission-codes/nix-overlay";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
# My stuff
|
# My stuff
|
||||||
dotfiles = {
|
dotfiles = {
|
||||||
url = "github:walkah/dotfiles";
|
url = "github:walkah/dotfiles";
|
||||||
@ -54,7 +60,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, flake-utils, deploy-rs, pre-commit-hooks, workon, ... }@inputs:
|
outputs = { self, nixpkgs, flake-utils, deploy-rs, pre-commit-hooks, fission, workon, ... }@inputs:
|
||||||
flake-utils.lib.eachDefaultSystem
|
flake-utils.lib.eachDefaultSystem
|
||||||
(system:
|
(system:
|
||||||
let
|
let
|
||||||
@ -71,6 +77,7 @@
|
|||||||
// {
|
// {
|
||||||
hosts = import ./nix/hosts.nix;
|
hosts = import ./nix/hosts.nix;
|
||||||
overlays.default = nixpkgs.lib.composeManyExtensions [
|
overlays.default = nixpkgs.lib.composeManyExtensions [
|
||||||
|
fission.overlay
|
||||||
workon.overlays.default
|
workon.overlays.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -6,9 +6,10 @@ _:
|
|||||||
"homebrew/cask"
|
"homebrew/cask"
|
||||||
"homebrew/cask-fonts"
|
"homebrew/cask-fonts"
|
||||||
"homebrew/services"
|
"homebrew/services"
|
||||||
|
"fission-codes/fission"
|
||||||
];
|
];
|
||||||
|
|
||||||
brews = [ "code-server" "coreutils" "mosh" ];
|
brews = [ "code-server" "coreutils" "homestar" "mosh" ];
|
||||||
|
|
||||||
casks = [
|
casks = [
|
||||||
"1password"
|
"1password"
|
||||||
|
@ -19,6 +19,8 @@ in
|
|||||||
../../modules/postgresql
|
../../modules/postgresql
|
||||||
../../modules/sops
|
../../modules/sops
|
||||||
../../modules/traefik
|
../../modules/traefik
|
||||||
|
|
||||||
|
../../services/homestar.nix
|
||||||
];
|
];
|
||||||
boot = {
|
boot = {
|
||||||
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
@ -129,6 +131,15 @@ in
|
|||||||
compression = "auto,lzma";
|
compression = "auto,lzma";
|
||||||
startAt = "daily";
|
startAt = "daily";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homestar = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
node.network.rpc = {
|
||||||
|
port = 9820;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
grafana = {
|
grafana = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
85
services/homestar.nix
Normal file
85
services/homestar.nix
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.homestar;
|
||||||
|
|
||||||
|
format = pkgs.formats.toml { };
|
||||||
|
configFile = format.generate "homestar.toml" cfg.settings;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.homestar = {
|
||||||
|
enable = mkEnableOption "homestar";
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "homestar" { };
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
inherit ((pkgs.formats.json { })) type;
|
||||||
|
default = { };
|
||||||
|
description = "Homestar settings";
|
||||||
|
};
|
||||||
|
|
||||||
|
user = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "homestar";
|
||||||
|
description = "User under which the Homestar daemon runs";
|
||||||
|
};
|
||||||
|
|
||||||
|
group = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "homestar";
|
||||||
|
description = "Group under which the Homestar daemon runs";
|
||||||
|
};
|
||||||
|
|
||||||
|
dataDir = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/var/lib/homestar";
|
||||||
|
description = "Homestar data directory";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
|
networking.firewall = {
|
||||||
|
allowPing = true;
|
||||||
|
allowedTCPPorts = [
|
||||||
|
1337
|
||||||
|
3030
|
||||||
|
4000
|
||||||
|
7001
|
||||||
|
];
|
||||||
|
allowedUDPPorts = [
|
||||||
|
7001
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users = mkIf (cfg.user == "homestar") {
|
||||||
|
homestar = {
|
||||||
|
inherit (cfg) group;
|
||||||
|
home = cfg.dataDir;
|
||||||
|
createHome = true;
|
||||||
|
isSystemUser = true;
|
||||||
|
description = "Homestar daemon user";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
users.groups = mkIf (cfg.group == "homestar") {
|
||||||
|
homestar = { };
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.homestar = {
|
||||||
|
description = "Homestar daemon";
|
||||||
|
after = [ "network.target" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = "${cfg.package}/bin/homestar start --config ${configFile}";
|
||||||
|
Restart = "always";
|
||||||
|
User = cfg.user;
|
||||||
|
Group = cfg.group;
|
||||||
|
WorkingDirectory = cfg.dataDir;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user