🎬 Freetube config, added Zen flake and updated default browser

This commit is contained in:
Martin Berg Alstad 2025-01-12 12:27:00 +01:00
parent 759c57dfac
commit be020ff82c
Signed by: martials
GPG Key ID: 706F53DD087A91DE
7 changed files with 91 additions and 4 deletions

View File

@ -1,6 +1,6 @@
rec { rec {
default = { default = {
browser = "io.github.zen_browser.zen"; browser = "zen";
calculator = "gnome-calculator"; calculator = "gnome-calculator";
fileManager = "nautilus"; fileManager = "nautilus";
imageViewer = "loupe"; imageViewer = "loupe";

View File

@ -1,5 +1,6 @@
{ {
pkgs, pkgs,
inputs,
outputs, outputs,
... ...
}: }:
@ -45,13 +46,13 @@ in
protonmail-desktop protonmail-desktop
stremio stremio
fastfetch fastfetch
freetube
discord discord
nix-prefetch-github # Cmd to get rev and hash from GitHub nix-prefetch-github # Cmd to get rev and hash from GitHub
gimp gimp
vlc vlc
fortune fortune
cowsay cowsay
inputs.zen-browser.packages."${system}".default # beta
]; ];
nix.settings.experimental-features = [ nix.settings.experimental-features = [

37
flake.lock generated
View File

@ -726,6 +726,22 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_3": {
"locked": {
"lastModified": 1735471104,
"narHash": "sha256-0q9NGQySwDQc7RhAV2ukfnu7Gxa5/ybJ2ANT8DQrQrs=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "88195a94f390381c6afcdaa933c2f6ff93959cb4",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixvim": { "nixvim": {
"inputs": { "inputs": {
"devshell": "devshell", "devshell": "devshell",
@ -809,7 +825,8 @@
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"nixvim": "nixvim", "nixvim": "nixvim",
"spicetify-nix": "spicetify-nix", "spicetify-nix": "spicetify-nix",
"stylix": "stylix" "stylix": "stylix",
"zen-browser": "zen-browser"
} }
}, },
"spicetify-nix": { "spicetify-nix": {
@ -983,6 +1000,24 @@
"repo": "treefmt-nix", "repo": "treefmt-nix",
"type": "github" "type": "github"
} }
},
"zen-browser": {
"inputs": {
"nixpkgs": "nixpkgs_3"
},
"locked": {
"lastModified": 1736655632,
"narHash": "sha256-TeA6G+BUWhOi2ZnewAEfwbsY/ku1H1sdNKfwjvH0wzM=",
"owner": "0xc000022070",
"repo": "zen-browser-flake",
"rev": "32f3692cc4d6a1d1cb8943be7d2e712a63c4b374",
"type": "github"
},
"original": {
"owner": "0xc000022070",
"repo": "zen-browser-flake",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@ -28,6 +28,7 @@
url = "github:danth/stylix/release-24.11"; url = "github:danth/stylix/release-24.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
zen-browser.url = "github:0xc000022070/zen-browser-flake";
}; };
outputs = outputs =

View File

@ -4,7 +4,7 @@
enable = true; enable = true;
defaultApplications = defaultApplications =
let let
browser = "io.github.zen_browser.zen.desktop"; browser = "zen.desktop";
imageViewer = "org.gnome.Loupe.desktop"; imageViewer = "org.gnome.Loupe.desktop";
in in
{ {

View File

@ -16,6 +16,7 @@ in
./default-applications.nix ./default-applications.nix
./development ./development
./fish.nix ./fish.nix
./freetube.nix
./gtk.nix ./gtk.nix
./mpv.nix ./mpv.nix
./nextcloud.nix ./nextcloud.nix

49
home-manager/freetube.nix Normal file
View File

@ -0,0 +1,49 @@
{
catppuccin.freetube.enable = true;
programs.freetube = {
enable = true;
settings = {
allowDashAv1Formats = true;
checkForUpdates = false;
currentLocale = "en-GB";
defaultTheatreMode = true;
defaultQuality = "1080";
region = "NO";
useSponsorBlock = true;
sponsorBlockSponsor = {
color = "CatppuccinMochaGreen";
skip = "autoSkip";
};
sponsorBlockSelfPromo = {
color = "CatppuccinMochaYellow";
skip = "showInSeekBar";
};
sponsorBlockInteraction = {
color = "CatppuccinMochaPink";
skip = "showInSeekBar";
};
sponsorBlockIntro = {
color = "CatppuccinMochaSapphire";
skip = "doNothing";
};
sponsorBlockOutro = {
color = "CatppuccinMochaBlue";
skip = "doNothing";
};
sponsorBlockRecap = {
color = "CatppuccinMochaMauve";
skip = "doNothing";
};
sponsorBlockMusicOffTopic = {
color = "CatppuccinMochaFlamingo";
skip = "doNothing";
};
sponsorBlockFiller = {
color = "CatppuccinMochaMauve";
skip = "doNothing";
};
};
};
}