mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
edited mpv profiles, added musnix
had to fix conflicts between various files
This commit is contained in:
parent
9aee0471cf
commit
d455f66036
3 changed files with 25 additions and 7 deletions
|
@ -50,6 +50,9 @@
|
||||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz";
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgsUnstable";
|
inputs.nixpkgs.follows = "nixpkgsUnstable";
|
||||||
};
|
};
|
||||||
|
musnix = {
|
||||||
|
url = "github:musnix/musnix";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
@ -65,6 +68,7 @@
|
||||||
nix-flatpak,
|
nix-flatpak,
|
||||||
home-manager,
|
home-manager,
|
||||||
zen-browser,
|
zen-browser,
|
||||||
|
musnix,
|
||||||
lix-module,
|
lix-module,
|
||||||
...
|
...
|
||||||
}@inputs:
|
}@inputs:
|
||||||
|
@ -106,6 +110,7 @@
|
||||||
./hosts/goober/configuration.nix
|
./hosts/goober/configuration.nix
|
||||||
lix-module.nixosModules.default
|
lix-module.nixosModules.default
|
||||||
nix-flatpak.nixosModules.nix-flatpak
|
nix-flatpak.nixosModules.nix-flatpak
|
||||||
|
musnix.nixosModules.musnix
|
||||||
catppuccin.nixosModules.catppuccin
|
catppuccin.nixosModules.catppuccin
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
home.packages =
|
home.packages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
|
yt-dlp
|
||||||
nerd-fonts.code-new-roman
|
nerd-fonts.code-new-roman
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
xfce.tumbler
|
xfce.tumbler
|
||||||
|
@ -284,10 +285,13 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
config = {
|
profiles = {
|
||||||
profile = "high-quality";
|
"high-quality" = {
|
||||||
ytdl-format = "bestvideo+bestaudio";
|
ytdl-format = "bestvideo+bestaudio";
|
||||||
cache-default = 4000000;
|
};
|
||||||
|
"1080p" = {
|
||||||
|
ytdl-format = "bestvideo[height<=?1080]+bestaudio/best";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, ... }:
|
{
|
||||||
|
musnix,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
# for java development on vscode
|
# for java development on vscode
|
||||||
programs.nix-ld.enable = true;
|
programs.nix-ld.enable = true;
|
||||||
|
@ -11,13 +16,17 @@
|
||||||
"tetrio-desktop"
|
"tetrio-desktop"
|
||||||
"beeper"
|
"beeper"
|
||||||
"exact-audio-copy"
|
"exact-audio-copy"
|
||||||
|
"cider-2"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
musnix.enable = true;
|
||||||
|
musnix.rtcqs.enable = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
zathura
|
zathura
|
||||||
# music editing software
|
# music editing software
|
||||||
reaper
|
reaper
|
||||||
surge
|
surge
|
||||||
|
cider-2
|
||||||
|
|
||||||
libreoffice-qt
|
libreoffice-qt
|
||||||
hunspell
|
hunspell
|
||||||
|
@ -44,9 +53,9 @@
|
||||||
gvfs
|
gvfs
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
|
|
||||||
eclipses.eclipse-java # school wants us to use it...
|
# eclipses.eclipse-java # school wants us to use it...
|
||||||
nil
|
nil
|
||||||
jetbrains.idea-ultimate
|
# jetbrains.idea-ultimate
|
||||||
|
|
||||||
# why3
|
# why3
|
||||||
# alt-ergo
|
# alt-ergo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue