feat: a bunch of random stuff
This commit is contained in:
parent
d317fa22c9
commit
a64be135a9
6 changed files with 91 additions and 913 deletions
|
@ -29,5 +29,6 @@
|
|||
fonts.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||
maple-mono-NF
|
||||
atkinson-hyperlegible
|
||||
];
|
||||
}
|
||||
|
|
980
flake.lock
980
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -114,6 +114,7 @@
|
|||
./home/ash/emacs.nix
|
||||
# ./home/ash/obs.nix
|
||||
./home/ash/niri.nix
|
||||
./home/ash/syncthing.nix
|
||||
./home/ash/tpm-fido.nix
|
||||
./home/ash/vscodium.nix
|
||||
./home/ash/zoom.nix
|
||||
|
@ -145,6 +146,7 @@
|
|||
./home/ash/obs.nix
|
||||
./home/ash/intellij.nix
|
||||
./home/ash/lutris.nix
|
||||
./home/ash/syncthing.nix
|
||||
|
||||
./home/ash/vscodium.nix
|
||||
./home/ash/zoom.nix
|
||||
|
@ -189,6 +191,7 @@
|
|||
./roles/mc-proxy.nix
|
||||
./roles/podman.nix
|
||||
./roles/postgres.nix
|
||||
./roles/youtrack.nix
|
||||
./roles/zulip.nix
|
||||
home-manager-stable.nixosModules.home-manager
|
||||
{
|
||||
|
|
6
home/ash/syncthing.nix
Normal file
6
home/ash/syncthing.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
tray.enable = true;
|
||||
};
|
||||
}
|
|
@ -35,6 +35,7 @@
|
|||
jakebecker.elixir-ls
|
||||
phoenixframework.phoenix
|
||||
bradlc.vscode-tailwindcss
|
||||
myriad-dreamin.tinymist
|
||||
]);
|
||||
})
|
||||
];
|
||||
|
|
13
roles/youtrack.nix
Normal file
13
roles/youtrack.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
config
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
|
||||
{
|
||||
services.youtrack = {
|
||||
enable = true;
|
||||
environmentalParameters.listen-port = 3002;
|
||||
package = pkgs.youtrack;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue