feat: a bunch of random stuff

This commit is contained in:
Ashhhleyyy 2024-10-08 00:47:43 +01:00
parent d317fa22c9
commit a64be135a9
Signed by: ash
GPG key ID: 83B789081A0878FB
6 changed files with 91 additions and 913 deletions

View file

@ -29,5 +29,6 @@
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) (nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
maple-mono-NF maple-mono-NF
atkinson-hyperlegible
]; ];
} }

File diff suppressed because it is too large Load diff

View file

@ -114,6 +114,7 @@
./home/ash/emacs.nix ./home/ash/emacs.nix
# ./home/ash/obs.nix # ./home/ash/obs.nix
./home/ash/niri.nix ./home/ash/niri.nix
./home/ash/syncthing.nix
./home/ash/tpm-fido.nix ./home/ash/tpm-fido.nix
./home/ash/vscodium.nix ./home/ash/vscodium.nix
./home/ash/zoom.nix ./home/ash/zoom.nix
@ -145,6 +146,7 @@
./home/ash/obs.nix ./home/ash/obs.nix
./home/ash/intellij.nix ./home/ash/intellij.nix
./home/ash/lutris.nix ./home/ash/lutris.nix
./home/ash/syncthing.nix
./home/ash/vscodium.nix ./home/ash/vscodium.nix
./home/ash/zoom.nix ./home/ash/zoom.nix
@ -189,6 +191,7 @@
./roles/mc-proxy.nix ./roles/mc-proxy.nix
./roles/podman.nix ./roles/podman.nix
./roles/postgres.nix ./roles/postgres.nix
./roles/youtrack.nix
./roles/zulip.nix ./roles/zulip.nix
home-manager-stable.nixosModules.home-manager home-manager-stable.nixosModules.home-manager
{ {

6
home/ash/syncthing.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }: {
services.syncthing = {
enable = true;
tray.enable = true;
};
}

View file

@ -35,6 +35,7 @@
jakebecker.elixir-ls jakebecker.elixir-ls
phoenixframework.phoenix phoenixframework.phoenix
bradlc.vscode-tailwindcss bradlc.vscode-tailwindcss
myriad-dreamin.tinymist
]); ]);
}) })
]; ];

13
roles/youtrack.nix Normal file
View file

@ -0,0 +1,13 @@
{
config
, pkgs
, ...
}:
{
services.youtrack = {
enable = true;
environmentalParameters.listen-port = 3002;
package = pkgs.youtrack;
};
}