add pkgs-stable
This commit is contained in:
parent
2e1c466410
commit
d0ec70972b
17
flake.lock
17
flake.lock
|
@ -358,6 +358,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1731797254,
|
||||
"narHash": "sha256-df3dJApLPhd11AlueuoN0Q4fHo/hagP75LlM5K1sz9g=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e8c38b73aeb218e27163376a2d617e61a2ad9b59",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-24.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nmd": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -403,6 +419,7 @@
|
|||
"home-manager": "home-manager",
|
||||
"nix-on-droid": "nix-on-droid",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"nixpkgs-stable": "nixpkgs-stable",
|
||||
"sops": "sops",
|
||||
"sops-nix": "sops-nix",
|
||||
"stylix": "stylix"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
outputs = inputs @ {
|
||||
self,
|
||||
nixpkgs,
|
||||
nixpkgs-stable,
|
||||
nix-on-droid,
|
||||
ags,
|
||||
stylix,
|
||||
|
@ -13,6 +14,7 @@
|
|||
domain = "joygnu.org";
|
||||
mail = "mail@joygnu.org";
|
||||
nixpath = "nix/";
|
||||
pkgs-stable = nixpkgs-stable.legacyPackages.x86_64-linux;
|
||||
|
||||
nixosconf = {modules}:
|
||||
nixpkgs.lib.nixosSystem {
|
||||
|
@ -22,12 +24,13 @@
|
|||
inherit domain;
|
||||
inherit mail;
|
||||
inherit nixpath;
|
||||
inherit pkgs-stable;
|
||||
};
|
||||
modules = modules ++ [home-manager.nixosModules.default sops-nix.nixosModules.sops];
|
||||
};
|
||||
in {
|
||||
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
pkgs = import nixpkgs {system = "aarch64-linux";};
|
||||
pkgs = import nixpkgs-stable {system = "aarch64-linux";};
|
||||
modules = [./hosts/phone];
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
|
@ -55,6 +58,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
firefox-addons = {
|
||||
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
username,
|
||||
domain,
|
||||
nixpath,
|
||||
pkgs-stable,
|
||||
...
|
||||
}: let
|
||||
mail = {
|
||||
|
@ -18,6 +19,7 @@ in {
|
|||
inherit mail;
|
||||
inherit domain;
|
||||
inherit nixpath;
|
||||
inherit pkgs-stable;
|
||||
};
|
||||
users = {
|
||||
"${username}" = import ./user.nix;
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
pkgs-stable,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
git
|
||||
htop
|
||||
|
@ -14,7 +18,7 @@
|
|||
yt-dlp
|
||||
wget
|
||||
cmatrix
|
||||
# cava
|
||||
pkgs-stable.cava
|
||||
nitch
|
||||
gotop
|
||||
sl
|
||||
|
|
Loading…
Reference in a new issue