Add leviathan

This commit is contained in:
2025-08-25 01:18:32 +01:00
parent fdf7719a4e
commit 8367b03304
11 changed files with 378 additions and 48 deletions

View File

@@ -10,4 +10,6 @@
./tofi
./waybar
];
zen-browser.enable = true;
}

View File

@@ -1,5 +1,4 @@
{pkgs, ...}:
{
{pkgs, ...}: {
programs.fuzzel = {
enable = true;
settings = {

View File

@@ -1,5 +1,4 @@
{...}:
{
{...}: {
home.file = {
".config/niri/config.kdl".source = ./config.kdl;
};

View File

@@ -187,8 +187,6 @@ in {
vscode.enable = true;
zen-browser.enable = true;
zsh = {
enable = true;
autosuggestion.enable = true;

View File

@@ -0,0 +1,21 @@
{pkgs, ...}: let
# librespot = pkgs.callPackage ../../../../packages/librespot.nix {
# withPulseAudio = true;
# withRodio = true;
# };
in {
services.librespot = {
enable = true;
# package = librespot;
settings = {
# "zeroconf-port" = 12345;
# "verbose" = true;
"name" = "Ships Comms";
# "bitrate" = "320";
# "format" = "S32";
"disable-credential-cache" = true;
};
};
}