add some packages

This commit is contained in:
Asaki Yuki 2026-04-11 07:51:04 +07:00
parent 96d189677e
commit ea137327c9
3 changed files with 46 additions and 4 deletions

43
flake.lock generated
View file

@ -556,6 +556,24 @@
"type": "github" "type": "github"
} }
}, },
"hytale-launcher": {
"inputs": {
"nixpkgs": "nixpkgs_5"
},
"locked": {
"lastModified": 1775840082,
"narHash": "sha256-7vLn6AaVuB8GAwwxNGWziYw90ZxZaRofawdvn05qprE=",
"owner": "zarilion",
"repo": "hytale-launcher-nix",
"rev": "30aef1c62122e0ec1b6b80c2b92cab84c333da84",
"type": "github"
},
"original": {
"owner": "zarilion",
"repo": "hytale-launcher-nix",
"type": "github"
}
},
"ixx": { "ixx": {
"inputs": { "inputs": {
"flake-utils": [ "flake-utils": [
@ -588,7 +606,7 @@
"inputs": { "inputs": {
"niri-stable": "niri-stable", "niri-stable": "niri-stable",
"niri-unstable": "niri-unstable", "niri-unstable": "niri-unstable",
"nixpkgs": "nixpkgs_5", "nixpkgs": "nixpkgs_6",
"nixpkgs-stable": "nixpkgs-stable", "nixpkgs-stable": "nixpkgs-stable",
"xwayland-satellite-stable": "xwayland-satellite-stable", "xwayland-satellite-stable": "xwayland-satellite-stable",
"xwayland-satellite-unstable": "xwayland-satellite-unstable" "xwayland-satellite-unstable": "xwayland-satellite-unstable"
@ -664,7 +682,7 @@
"inputs": { "inputs": {
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
"nixpkgs": "nixpkgs_6", "nixpkgs": "nixpkgs_7",
"nixpkgs-nixcord": "nixpkgs-nixcord" "nixpkgs-nixcord": "nixpkgs-nixcord"
}, },
"locked": { "locked": {
@ -824,6 +842,22 @@
} }
}, },
"nixpkgs_6": { "nixpkgs_6": {
"locked": {
"lastModified": 1775423009,
"narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_7": {
"locked": { "locked": {
"lastModified": 1773222311, "lastModified": 1773222311,
"narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=", "narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=",
@ -839,7 +873,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_7": { "nixpkgs_8": {
"locked": { "locked": {
"lastModified": 1775305101, "lastModified": 1775305101,
"narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=", "narHash": "sha256-/74n1oQPtKG52Yw41cbToxspxHbYz6O3vi+XEw16Qe8=",
@ -932,11 +966,12 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"honkai-railway-grub-theme": "honkai-railway-grub-theme", "honkai-railway-grub-theme": "honkai-railway-grub-theme",
"hyprland": "hyprland", "hyprland": "hyprland",
"hytale-launcher": "hytale-launcher",
"niri": "niri", "niri": "niri",
"nix-index-database": "nix-index-database", "nix-index-database": "nix-index-database",
"nixcord": "nixcord", "nixcord": "nixcord",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_7", "nixpkgs": "nixpkgs_8",
"nixvim": "nixvim", "nixvim": "nixvim",
"unstablepkgs": "unstablepkgs" "unstablepkgs": "unstablepkgs"
} }

View file

@ -7,6 +7,7 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
catppuccin.url = "github:catppuccin/nix"; catppuccin.url = "github:catppuccin/nix";
hytale-launcher.url = "github:zarilion/hytale-launcher-nix";
niri.url = "github:sodiboo/niri-flake"; niri.url = "github:sodiboo/niri-flake";
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
nixcord.url = "github:FlameFlag/nixcord"; nixcord.url = "github:FlameFlag/nixcord";

View file

@ -2,6 +2,7 @@
pkgs, pkgs,
lib, lib,
osconfig, osconfig,
inputs,
... ...
}: }:
{ {
@ -14,7 +15,12 @@
gimp gimp
libreoffice-qt-fresh libreoffice-qt-fresh
lutris lutris
osu-lazer-bin
proton-pass
proton-authenticator
inputs.hytale-launcher.packages.${pkgs.system}.default
(lib.mkIf osconfig.device.programs.cider-2.enable cider-2) (lib.mkIf osconfig.device.programs.cider-2.enable cider-2)
]; ];
} }