Compare commits

..

4 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
3 changed files with 85 additions and 82 deletions
+79 -75
View File
@@ -1,88 +1,92 @@
{ inputs, self, config, ... }: { {
inputs,
self,
config,
...
}: {
flake.nixosModules.nixos-host = {pkgs, ...}: {
imports = [
../../hardware-configuration.nix
];
flake.nixosModules.nixos-host = {pkgs, ...}: { # Bootloader
imports = [ boot.loader.systemd-boot.enable = true;
../../hardware-configuration.nix boot.loader.efi.canTouchEfiVariables = true;
];
# Bootloader # Use latest kernel
boot.loader.systemd-boot.enable = true; boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.efi.canTouchEfiVariables = true;
# Use latest kernel # Hostname
boot.kernelPackages = pkgs.linuxPackages_latest; networking.hostName = "nixos";
# Hostname # Networking
networking.hostName = "nixos"; networking.networkmanager.enable = true;
# Networking # Time zone
networking.networkmanager.enable = true; time.timeZone = "Europe/Lisbon";
# Time zone # Locale
time.timeZone = "Europe/Lisbon"; i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "pt_PT.UTF-8";
LC_IDENTIFICATION = "pt_PT.UTF-8";
LC_MEASUREMENT = "pt_PT.UTF-8";
LC_MONETARY = "pt_PT.UTF-8";
LC_NAME = "pt_PT.UTF-8";
LC_NUMERIC = "pt_PT.UTF-8";
LC_PAPER = "pt_PT.UTF-8";
LC_TELEPHONE = "pt_PT.UTF-8";
LC_TIME = "pt_PT.UTF-8";
};
# Locale # Printing
i18n.defaultLocale = "en_GB.UTF-8"; services.printing.enable = true;
i18n.extraLocaleSettings = {
LC_ADDRESS = "pt_PT.UTF-8";
LC_IDENTIFICATION = "pt_PT.UTF-8";
LC_MEASUREMENT = "pt_PT.UTF-8";
LC_MONETARY = "pt_PT.UTF-8";
LC_NAME = "pt_PT.UTF-8";
LC_NUMERIC = "pt_PT.UTF-8";
LC_PAPER = "pt_PT.UTF-8";
LC_TELEPHONE = "pt_PT.UTF-8";
LC_TIME = "pt_PT.UTF-8";
};
# Printing # Audio
services.printing.enable = true; services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# Audio # SSH
services.pulseaudio.enable = false; services.openssh = {
security.rtkit.enable = true; enable = true;
services.pipewire = { settings = {
enable = true; PermitRootLogin = "no";
alsa.enable = true; };
alsa.support32Bit = true; };
pulse.enable = true;
};
# SSH # User account
services.openssh = { users.users.${config.username} = {
enable = true; isNormalUser = true;
settings = { description = "Thomas Gouveia Lopes";
PermitRootLogin = "no"; extraGroups = ["networkmanager" "wheel"];
};
# Programs
# Allow unfree
nixpkgs.config.allowUnfree = true;
# Enable flakes
nix.settings.experimental-features = ["nix-command" "flakes"];
# Auto-unlock gnome-keyring on login
security.pam.services.login.enableGnomeKeyring = true;
security.pam.services.gdm.enableGnomeKeyring = true;
security.pam.services.gdm-password.enableGnomeKeyring = true;
# State version
system.stateVersion = "25.11";
fileSystems."/mnt/endeavour" = {
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
fsType = "ext4";
options = ["defaults" "noatime"];
}; };
}; };
# User account
users.users.${config.username} = {
isNormalUser = true;
description = "Thomas Gouveia Lopes";
extraGroups = [ "networkmanager" "wheel" ];
};
# Programs
# Allow unfree
nixpkgs.config.allowUnfree = true;
# Enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Auto-unlock gnome-keyring on login
security.pam.services.login.enableGnomeKeyring = true;
security.pam.services.gdm.enableGnomeKeyring = true;
security.pam.services.gdm-password.enableGnomeKeyring = true;
# State version
system.stateVersion = "25.11";
fileSystems."/mnt/endeavour" = {
device = "/dev/disk/by-uuid/a32ca052-12a5-4355-bd3b-b4515d9ea4a5";
fsType = "ext4";
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
@@ -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