dendritic: add statix for autoCleanup

This commit is contained in:
2026-05-24 12:17:46 +02:00
parent 48b256693a
commit d9c156dcc2
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
{ inputs, self, ...}: { { self, ...}: {
flake.nixosModules.browsers = { pkgs, pkgs-unstable, ...}: { flake.nixosModules.browsers = { pkgs, pkgs-unstable, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
chromium # used only to flash the firmware on my framework laptop 16 (keyboard.frame.work) as only chromium based browser support webHID. chromium # used only to flash the firmware on my framework laptop 16 (keyboard.frame.work) as only chromium based browser support webHID.
+1 -1
View File
@@ -1,4 +1,4 @@
{ pkgs-unstable, ...}: { # for some reason perSystem can't expose pkgs-unstable so we need to expose it here { ...}: { # for some reason perSystem can't expose pkgs-unstable so we need to expose it here
# ----------------------------------------------------- # -----------------------------------------------------
# Here are a bunch of scripts that interact with hyprland # Here are a bunch of scripts that interact with hyprland
# Some are still used. Some are broken. Some are deprecated. But I do still keep them in case I want to go back to old tools # Some are still used. Some are broken. Some are deprecated. But I do still keep them in case I want to go back to old tools
+1 -1
View File
@@ -7,7 +7,7 @@
}; };
}; };
}; };
flake.homeModules.zsh = {pkgs, pkgs-unstable,...}: { flake.homeModules.zsh = {pkgs,...}: {
home.packages = [ home.packages = [
self.packages.${pkgs.system}.dejaManuallyDerived self.packages.${pkgs.system}.dejaManuallyDerived
#pkgs-unstable.deja #pkgs-unstable.deja
+2 -1
View File
@@ -1,8 +1,9 @@
{ self, ... }: { { self, ... }: {
flake.nixosModules.autoCleanup-laptop = {pkgs, ...}: { flake.nixosModules.autoCleanup-laptop = {pkgs, pkgs-unstable, ...}: {
# Ensure your script is available system-wide # Ensure your script is available system-wide
environment.systemPackages = [ environment.systemPackages = [
self.packages.${pkgs.system}.custom-cleanNix-laptop self.packages.${pkgs.system}.custom-cleanNix-laptop
pkgs-unstable.statix
]; ];
users.users.tomasr = { users.users.tomasr = {
linger = true; # lingering is required linger = true; # lingering is required