mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
Compare commits
2 commits
89f740c823
...
5fea5f7400
Author | SHA1 | Date | |
---|---|---|---|
5fea5f7400 | |||
5819e39171 |
2 changed files with 26 additions and 4 deletions
|
@ -16,6 +16,7 @@
|
||||||
accent = "pink";
|
accent = "pink";
|
||||||
size = "standard";
|
size = "standard";
|
||||||
tweaks = [ "normal" ];
|
tweaks = [ "normal" ];
|
||||||
|
icon.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
|
|
|
@ -26,9 +26,7 @@
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.lix;
|
package = pkgs.lix;
|
||||||
settings = {
|
settings = { experimental-features = [ "nix-command" "flakes" ]; };
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
zramSwap = {
|
zramSwap = {
|
||||||
|
@ -136,11 +134,17 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
"status.blahai.gay" = {
|
"kuma.blahai.gay" = {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
reverse_proxy localhost:3001
|
reverse_proxy localhost:3001
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"status.blahai.gay" = {
|
||||||
|
extraConfig = ''
|
||||||
|
reverse_proxy localhost:19999
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -149,6 +153,16 @@
|
||||||
settings = { PORT = "3001"; };
|
settings = { PORT = "3001"; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
netdata = {
|
||||||
|
enable = true;
|
||||||
|
config.global = {
|
||||||
|
"memory mode" = "ram";
|
||||||
|
"debug log" = "none";
|
||||||
|
"access log" = "none";
|
||||||
|
"error log" = "syslog";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
forgejo = {
|
forgejo = {
|
||||||
package = pkgs.forgejo;
|
package = pkgs.forgejo;
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -253,6 +267,13 @@
|
||||||
"$y$j9T$KpQYYLB6eWfHAUo9.o/uy1$gnj/UlWLrx5XBZDm2GNdjHs2G5D3XxxqqtrCIf5MX43";
|
"$y$j9T$KpQYYLB6eWfHAUo9.o/uy1$gnj/UlWLrx5XBZDm2GNdjHs2G5D3XxxqqtrCIf5MX43";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.shizu = {
|
||||||
|
isNormalUser = true;
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ2zPly//j7KGHTqd/KZ7Hcbw8vnNJzAZCbYcKBzx2jW"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
users.users.nino = {
|
users.users.nino = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
|
|
Loading…
Reference in a new issue