Compare commits

..

8 Commits

Author SHA1 Message Date
gitea actions 72e03cf69b update helium to 0.10.2.1 2026-03-13 06:00:28 +00:00
thomas 31116e200b cleanup
helium update / update-helium (push) Successful in 10s
zen browser update / update-zen-browser (push) Successful in 9s
handy update / update-handy (push) Successful in 6s
2026-03-13 00:35:03 +00:00
thomas 7fe72e311e tmux and obs 2026-03-12 22:10:40 +00:00
thomas 51903cc47f update handy to 0.7.10 (#4)
helium update / update-helium (push) Successful in 6s
zen browser update / update-zen-browser (push) Successful in 11s
handy update / update-handy (push) Successful in 5s
automated update of handy appimage version and hash

Co-authored-by: gitea actions <actions@localhost>
Reviewed-on: #4
2026-03-11 16:36:29 +00:00
thomas 0e854495ff fix zen-browser audio/video codecs with ffmpeg-full 2026-03-11 16:35:46 +00:00
thomas 520177b9a5 update and add some pkgs 2026-03-11 14:56:42 +00:00
thomas effd3390c3 enable openssh 2026-03-10 11:53:13 +00:00
thomas 59c1dde695 update handy to 0.7.9 (#3)
automated update of handy appimage version and hash

Co-authored-by: gitea actions <actions@localhost>
Reviewed-on: #3
2026-03-09 17:39:54 +00:00
6 changed files with 123 additions and 96 deletions
+2
View File
@@ -2,6 +2,7 @@
flake.nixosModules.development = {pkgs, ...}: { flake.nixosModules.development = {pkgs, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nodejs_24 nodejs_24
go
nixfmt nixfmt
zellij zellij
@@ -17,6 +18,7 @@
vscode-langservers-extracted # includes css-lsp, eslint-lsp, html-lsp, json-lsp vscode-langservers-extracted # includes css-lsp, eslint-lsp, html-lsp, json-lsp
tailwindcss-language-server tailwindcss-language-server
biome biome
typescript-go
# Treesitter CLI + C compiler for building grammars # Treesitter CLI + C compiler for building grammars
tree-sitter tree-sitter
+14 -2
View File
@@ -1,5 +1,9 @@
{ inputs, self, config, ... }: { {
inputs,
self,
config,
...
}: {
flake.nixosModules.nixos-host = {pkgs, ...}: { flake.nixosModules.nixos-host = {pkgs, ...}: {
imports = [ imports = [
../../hardware-configuration.nix ../../hardware-configuration.nix
@@ -48,6 +52,14 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
pulse.enable = true; pulse.enable = true;
}; };
# SSH
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
};
};
# User account # User account
users.users.${config.username} = { users.users.${config.username} = {
isNormalUser = true; isNormalUser = true;
+6 -5
View File
@@ -1,8 +1,4 @@
{ {self, ...}: {
inputs,
self,
...
}: {
flake.nixosModules.packages = {pkgs, ...}: { flake.nixosModules.packages = {pkgs, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
fd fd
@@ -12,6 +8,7 @@
alacritty alacritty
fzf fzf
autojump autojump
wl-clipboard
pulseaudio pulseaudio
legcord legcord
quickshell quickshell
@@ -20,6 +17,10 @@
feishin feishin
obsidian obsidian
self.packages.${pkgs.stdenv.hostPlatform.system}.handy self.packages.${pkgs.stdenv.hostPlatform.system}.handy
mpv
ffmpeg
tmux
obs-studio
]; ];
}; };
} }
+2 -2
View File
@@ -2,11 +2,11 @@
perSystem = {pkgs, ...}: { perSystem = {pkgs, ...}: {
packages.handy = pkgs.appimageTools.wrapType2 rec { packages.handy = pkgs.appimageTools.wrapType2 rec {
pname = "handy"; pname = "handy";
version = "0.7.9"; version = "0.7.10";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/cjpais/Handy/releases/download/v${version}/Handy_${version}_amd64.AppImage"; url = "https://github.com/cjpais/Handy/releases/download/v${version}/Handy_${version}_amd64.AppImage";
hash = "sha256-iSibRpme8xJfumhjJ2LzkrtFwV8j9nHajMnBygBFLz4="; hash = "sha256-vBOcXCCJr9D0u0h27nN4XLPPngx4m+toAfi6O6Fuojk=";
}; };
extraInstallCommands = let extraInstallCommands = let
+2 -2
View File
@@ -2,11 +2,11 @@
perSystem = { pkgs, ... }: { perSystem = { pkgs, ... }: {
packages.helium = pkgs.appimageTools.wrapType2 rec { packages.helium = pkgs.appimageTools.wrapType2 rec {
pname = "helium"; pname = "helium";
version = "0.9.4.1"; version = "0.10.2.1";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/imputnet/helium-linux/releases/download/${version}/${pname}-${version}-x86_64.AppImage"; url = "https://github.com/imputnet/helium-linux/releases/download/${version}/${pname}-${version}-x86_64.AppImage";
hash = "sha256-N5gdWuxOrIudJx/4nYo4/SKSxakpTFvL4zzByv6Cnug="; hash = "sha256-Kh6UgdleK+L+G4LNiQL2DkQIwS43cyzX+Jo6K0/fX1M=";
}; };
extraInstallCommands = let extraInstallCommands = let
+22 -10
View File
@@ -1,6 +1,5 @@
{ ... }: { { lib, ... }: {
perSystem = { pkgs, ... }: { perSystem = { pkgs, ... }: let
packages.zen-browser = pkgs.appimageTools.wrapType2 rec {
pname = "zen-browser"; pname = "zen-browser";
version = "1.19.1b"; version = "1.19.1b";
@@ -9,21 +8,34 @@
hash = "sha256-h3lza2C+SxptpcX897Uf/nM8dNILUBXScSNQZlvSIQg="; hash = "sha256-h3lza2C+SxptpcX897Uf/nM8dNILUBXScSNQZlvSIQg=";
}; };
extraInstallCommands = let appimageContents = pkgs.appimageTools.extract { inherit pname version src; };
contents = pkgs.appimageTools.extract { inherit pname version src; }; in {
in '' packages.zen-browser = pkgs.appimageTools.wrapType2 {
desktop_file=$(find ${contents} -name "*.desktop" | head -n1) inherit pname version src;
extraPkgs = pkgs: [ pkgs.ffmpeg-full ];
extraInstallCommands = ''
desktop_file=$(find ${appimageContents} -name "*.desktop" | head -n1)
if [ -n "$desktop_file" ]; then if [ -n "$desktop_file" ]; then
install -m 444 -D "$desktop_file" "$out/share/applications/${pname}.desktop" install -m 444 -D "$desktop_file" "$out/share/applications/${pname}.desktop"
# The desktop file uses 'zen' as the binary name
substituteInPlace "$out/share/applications/${pname}.desktop" \ substituteInPlace "$out/share/applications/${pname}.desktop" \
--replace 'Exec=zen' 'Exec=${pname}' --replace 'Exec=zen' 'Exec=${pname}'
fi fi
if [ -d ${contents}/usr/share/icons ]; then if [ -d ${appimageContents}/usr/share/icons ]; then
cp -r ${contents}/usr/share/icons $out/share cp -r ${appimageContents}/usr/share/icons $out/share
fi fi
ln -s $out/bin/${pname} $out/bin/zen
''; '';
meta = {
description = "Experience tranquillity while browsing the web without people tracking you!";
homepage = "https://zen-browser.app";
license = lib.licenses.mpl20;
platforms = [ "x86_64-linux" ];
};
}; };
}; };
} }