mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
dendritic: add statix for autoCleanup
This commit is contained in:
@@ -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,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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user