Compare commits

..

4 Commits

Author SHA1 Message Date
gitea actions 4d3f438605 update zen browser to 1.19.2b 2026-03-13 06:20: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
3 changed files with 85 additions and 82 deletions
+11 -7
View File
@@ -1,6 +1,10 @@
{ inputs, self, config, ... }: { {
inputs,
flake.nixosModules.nixos-host = {pkgs, ...}: { self,
config,
...
}: {
flake.nixosModules.nixos-host = {pkgs, ...}: {
imports = [ imports = [
../../hardware-configuration.nix ../../hardware-configuration.nix
]; ];
@@ -60,7 +64,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
users.users.${config.username} = { users.users.${config.username} = {
isNormalUser = true; isNormalUser = true;
description = "Thomas Gouveia Lopes"; description = "Thomas Gouveia Lopes";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = ["networkmanager" "wheel"];
}; };
# Programs # Programs
@@ -69,7 +73,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Enable flakes # Enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = ["nix-command" "flakes"];
# Auto-unlock gnome-keyring on login # Auto-unlock gnome-keyring on login
security.pam.services.login.enableGnomeKeyring = true; security.pam.services.login.enableGnomeKeyring = true;
@@ -82,7 +86,7 @@ flake.nixosModules.nixos-host = {pkgs, ...}: {
fileSystems."/mnt/endeavour" = { fileSystems."/mnt/endeavour" = {
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5"; device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
fsType = "ext4"; fsType = "ext4";
options = [ "defaults" "noatime" ]; options = ["defaults" "noatime"];
};
}; };
};
} }
+4 -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
@@ -22,6 +19,8 @@
self.packages.${pkgs.stdenv.hostPlatform.system}.handy self.packages.${pkgs.stdenv.hostPlatform.system}.handy
mpv mpv
ffmpeg ffmpeg
tmux
obs-studio
]; ];
}; };
} }
+2 -2
View File
@@ -1,11 +1,11 @@
{ lib, ... }: { { lib, ... }: {
perSystem = { pkgs, ... }: let perSystem = { pkgs, ... }: let
pname = "zen-browser"; pname = "zen-browser";
version = "1.19.1b"; version = "1.19.2b";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen-x86_64.AppImage"; url = "https://github.com/zen-browser/desktop/releases/download/${version}/zen-x86_64.AppImage";
hash = "sha256-h3lza2C+SxptpcX897Uf/nM8dNILUBXScSNQZlvSIQg="; hash = "sha256-lDn7rIYDgmyUnc3PdIASXfpXBXASL6TEdzyZfT716cI=";
}; };
appimageContents = pkgs.appimageTools.extract { inherit pname version src; }; appimageContents = pkgs.appimageTools.extract { inherit pname version src; };