Compare commits
10 commits
b5c2a7c59f
...
5a217c9f80
Author | SHA1 | Date | |
---|---|---|---|
|
5a217c9f80 | ||
|
c65a6134b4 | ||
|
5ea10df4f8 | ||
|
f2a0ae2c6a | ||
|
e8a36e88b3 | ||
|
7da7459717 | ||
|
bbea040b99 | ||
|
a1825bf0cd | ||
|
a1ff792e6d | ||
|
55254f61da |
3 changed files with 80 additions and 41 deletions
37
Hackey/Hackey.nix
Normal file
37
Hackey/Hackey.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ pkgs, ...}:{
|
||||||
|
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
"Hackey/Sharkey/.config/default.yml" = {
|
||||||
|
source = ./default.yml;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user.services = {
|
||||||
|
Hackey = {
|
||||||
|
Unit = {
|
||||||
|
Description = "Hackey instance";
|
||||||
|
After = [ "network-online.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = "pnpm start";
|
||||||
|
WorkingDirectory = "/home/vic/Hackey/Sharkey";
|
||||||
|
Environment = [
|
||||||
|
"NODE_ENV=production"
|
||||||
|
"NODE_OPTIONS=--max-old-space-size=2048"
|
||||||
|
"MK_CONFIG_DB_PASS_FILE=/home/vic/.config/pass"
|
||||||
|
];
|
||||||
|
SyslogIdentifier = "hackey";
|
||||||
|
Restart = "always";
|
||||||
|
TimeoutSec = 60;
|
||||||
|
};
|
||||||
|
|
||||||
|
Install = {
|
||||||
|
WantedBy = [ "default.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
50
home.nix
50
home.nix
|
@ -1,5 +1,10 @@
|
||||||
{ configs, pkgs }: {
|
{ configs, pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./redis/Redis.nix
|
||||||
|
./Hackey/Hackey.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
home.username = "vic";
|
home.username = "vic";
|
||||||
|
@ -7,7 +12,8 @@
|
||||||
|
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.helix
|
pkgs.helix #editor
|
||||||
|
pkgs.bat #modern cat
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
@ -17,51 +23,13 @@
|
||||||
PAGER = "less";
|
PAGER = "less";
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = {
|
|
||||||
".config/redis/redis.conf" = {
|
|
||||||
source = ./redis/redis.conf;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
home.file = {
|
|
||||||
"Hackey/Sharkey/.config/default.yml" = {
|
|
||||||
source = ./Hackey/default.yml;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
systemd.user.services = {
|
|
||||||
|
|
||||||
Hackey = {
|
|
||||||
Unit = {
|
|
||||||
Description = "Hackey instance";
|
|
||||||
After = [ "network-online.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
Service = {
|
|
||||||
Type = "simple";
|
|
||||||
ExecStart = "pnpm start";
|
|
||||||
WorkingDirectory = "${home.homeDirectory}/Hackey/Sharkey";
|
|
||||||
Enviroment = {
|
|
||||||
NODE_ENV = "production";
|
|
||||||
NODE_OPTIONS = "--max-old-space-size=2048";
|
|
||||||
MK_CONFIG_DB_PASS_FILE="${home.homeDirectory}/.config/pass";
|
|
||||||
};
|
|
||||||
SyslogIdentifier = "hackey";
|
|
||||||
Restart = "always";
|
|
||||||
TimeoutSec = 60;
|
|
||||||
};
|
|
||||||
|
|
||||||
Install = {
|
|
||||||
WantedBy = [ "default.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
}
|
}
|
34
redis/Redis.nix
Normal file
34
redis/Redis.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file = {
|
||||||
|
".config/redis/redis.conf" = {
|
||||||
|
source = ./redis.conf;
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user.services = {
|
||||||
|
|
||||||
|
Redis = {
|
||||||
|
Unit = {
|
||||||
|
Description = "Vic's redis";
|
||||||
|
After = [ "network-online.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = "redis-server .config/redis/redis.conf";
|
||||||
|
SyslogIdentifier = "hackey";
|
||||||
|
Restart = "always";
|
||||||
|
TimeoutSec = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
Install = {
|
||||||
|
WantedBy = [ "default.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue