bump 2026-04-02
This commit is contained in:
parent
06ba7bb655
commit
4901a1c674
4 changed files with 100 additions and 74 deletions
17
flake.lock
generated
17
flake.lock
generated
|
|
@ -365,6 +365,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs-last-building": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1754028485,
|
||||||
|
"narHash": "sha256-IiiXB3BDTi6UqzAZcf2S797hWEPCRZOwyNThJIYhUfk=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "59e69648d345d6e8fef86158c555730fa12af9de",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "59e69648d345d6e8fef86158c555730fa12af9de",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs-regression": {
|
"nixpkgs-regression": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1643052045,
|
"lastModified": 1643052045,
|
||||||
|
|
@ -437,6 +453,7 @@
|
||||||
"nixos-facter-modules": "nixos-facter-modules",
|
"nixos-facter-modules": "nixos-facter-modules",
|
||||||
"nixos-hardware": "nixos-hardware",
|
"nixos-hardware": "nixos-hardware",
|
||||||
"nixpkgs": "nixpkgs_4",
|
"nixpkgs": "nixpkgs_4",
|
||||||
|
"nixpkgs-last-building": "nixpkgs-last-building",
|
||||||
"zen-browser": "zen-browser"
|
"zen-browser": "zen-browser"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixos.url = "github:NixOS/nixpkgs/nixos-25.11";
|
nixos.url = "github:NixOS/nixpkgs/nixos-25.11";
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
|
nixpkgs-last-building.url = "github:NixOS/nixpkgs/59e69648d345d6e8fef86158c555730fa12af9de";
|
||||||
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
|
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/0.1";
|
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/0.1";
|
||||||
|
|
@ -40,6 +41,7 @@
|
||||||
nixos,
|
nixos,
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
|
nixpkgs-last-building,
|
||||||
nixos-facter-modules,
|
nixos-facter-modules,
|
||||||
nixos-hardware,
|
nixos-hardware,
|
||||||
determinate,
|
determinate,
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,14 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
users.users.tao.packages = with pkgs; [
|
pkgs-last-building = inputs.nixpkgs-last-building.legacyPackages.${pkgs.system};
|
||||||
grayjay
|
in {
|
||||||
|
users.users.tao.packages =
|
||||||
|
(with pkgs-last-building; [
|
||||||
|
oculante # https://nixpk.gs/pr-tracker.html?pr=502921
|
||||||
|
])
|
||||||
|
++ (with pkgs; [
|
||||||
# keep-sorted start sticky_comments=no
|
# keep-sorted start sticky_comments=no
|
||||||
# android-tools
|
# android-tools
|
||||||
# boxxy
|
# boxxy
|
||||||
|
|
@ -37,6 +42,7 @@
|
||||||
forgejo-cli
|
forgejo-cli
|
||||||
freecad-wayland
|
freecad-wayland
|
||||||
gocryptfs
|
gocryptfs
|
||||||
|
grayjay
|
||||||
jellyfin-mpv-shim
|
jellyfin-mpv-shim
|
||||||
man-pages
|
man-pages
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
|
|
@ -47,7 +53,6 @@
|
||||||
nushell
|
nushell
|
||||||
nvd
|
nvd
|
||||||
obs-studio
|
obs-studio
|
||||||
oculante
|
|
||||||
onlyoffice-desktopeditors
|
onlyoffice-desktopeditors
|
||||||
openscad
|
openscad
|
||||||
pandoc
|
pandoc
|
||||||
|
|
@ -77,7 +82,7 @@
|
||||||
zotero
|
zotero
|
||||||
zoxide
|
zoxide
|
||||||
# keep-sorted end
|
# keep-sorted end
|
||||||
];
|
]);
|
||||||
virtualisation.waydroid = {
|
virtualisation.waydroid = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.waydroid-nftables;
|
package = pkgs.waydroid-nftables;
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,8 @@ export alias p = pueue
|
||||||
export alias snapper = snapper -c home
|
export alias snapper = snapper -c home
|
||||||
export alias zl = zellij
|
export alias zl = zellij
|
||||||
|
|
||||||
|
export def today-iso [] { date now | format date %F }
|
||||||
|
|
||||||
export alias cringe = sudo bootctl set-oneshot auto-windows
|
export alias cringe = sudo bootctl set-oneshot auto-windows
|
||||||
|
|
||||||
export alias la = ls -a
|
export alias la = ls -a
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue