Compare commits
No commits in common. "921c6a174bcbb869c088775096c5be8313462944" and "72a10c5ec0db3acb21df125ee1687a8f415dd292" have entirely different histories.
921c6a174b
...
72a10c5ec0
14
flake.lock
generated
14
flake.lock
generated
@ -5,11 +5,11 @@
|
|||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1710767791,
|
"lastModified": 1710094054,
|
||||||
"narHash": "sha256-E8alxBNjaf0BnXArNXNPfqqNkcLQmc/YSnsfS+FStQg=",
|
"narHash": "sha256-ImjYfn/C39bk1LGxc91JtiE0Gboh1mbwVHzicT++7L8=",
|
||||||
"ref": "master",
|
"ref": "master",
|
||||||
"rev": "a8c527ba18fb335811ad42f86199181032d7b367",
|
"rev": "c3b35cdd2d5b403a52103b90088b11251318ee63",
|
||||||
"revCount": 9,
|
"revCount": 7,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.t-juice.club/torjus/ghettoptt"
|
"url": "https://git.t-juice.club/torjus/ghettoptt"
|
||||||
},
|
},
|
||||||
@ -42,11 +42,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1710631334,
|
"lastModified": 1709703039,
|
||||||
"narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=",
|
"narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a",
|
"rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -151,7 +151,6 @@
|
|||||||
# ",code:202,exec,mumble rpc starttalking"
|
# ",code:202,exec,mumble rpc starttalking"
|
||||||
#",code:202,pass,^(info\.mumble\.Mumble)$"
|
#",code:202,pass,^(info\.mumble\.Mumble)$"
|
||||||
# ",code:202,exec,pamixer --default-source -u"
|
# ",code:202,exec,pamixer --default-source -u"
|
||||||
",code:202,pass,^discord$"
|
|
||||||
|
|
||||||
# worspace switching
|
# worspace switching
|
||||||
"$mainMod,1,workspace,name:main 1"
|
"$mainMod,1,workspace,name:main 1"
|
||||||
|
@ -33,7 +33,6 @@
|
|||||||
spicetify-cli
|
spicetify-cli
|
||||||
sshfs
|
sshfs
|
||||||
unstable.ventoy
|
unstable.ventoy
|
||||||
discord
|
|
||||||
|
|
||||||
# k8s tools
|
# k8s tools
|
||||||
unstable.talosctl
|
unstable.talosctl
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../system/monitoring.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Sops stuff
|
# Sops stuff
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
prometheus-node-exporter
|
|
||||||
prometheus-systemd-exporter
|
|
||||||
];
|
|
||||||
|
|
||||||
systemd.services."node-exporter" = {
|
|
||||||
enable = true;
|
|
||||||
unitConfig = {
|
|
||||||
Description = "Prometheus Node Exporter";
|
|
||||||
After = [ "network.target" ];
|
|
||||||
};
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = "${pkgs.prometheus-node-exporter}/bin/node_exporter";
|
|
||||||
};
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.services."systemd-exporter" = {
|
|
||||||
enable = true;
|
|
||||||
unitConfig = {
|
|
||||||
Description = "Prometheus Systemd Exporter";
|
|
||||||
After = [ "network.target" ];
|
|
||||||
};
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = "${pkgs.prometheus-systemd-exporter}/bin/systemd_exporter";
|
|
||||||
};
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 9100 9558 8989 ];
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user