nixpkgs update

This commit is contained in:
naturallaw77 2024-10-24 09:50:00 -07:00
parent ea193baaea
commit 9173ab47c8
3 changed files with 120 additions and 7 deletions

View File

@ -113,7 +113,6 @@
papirus-icon-theme
ranger
sparrow
bisq-desktop
neofetch
gedit
openssl

View File

@ -1,12 +1,104 @@
{
"nodes": {
"bisq1": {
"inputs": {
"nix-appimage": "nix-appimage",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1728759865,
"narHash": "sha256-qoAmGWkMTDiRoROuQlg/GTVOP9INP3GhlyHllNKaMXU=",
"owner": "emmanuelrosa",
"repo": "bisq-for-nixos",
"rev": "52c03fbf0329c481a99893d3e0a067908b9b7d31",
"type": "github"
},
"original": {
"owner": "emmanuelrosa",
"repo": "bisq-for-nixos",
"type": "github"
}
},
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1696426674,
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
"owner": "edolstra",
"repo": "flake-compat",
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
"type": "github"
},
"original": {
"owner": "edolstra",
"repo": "flake-compat",
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nix-appimage": {
"inputs": {
"flake-compat": "flake-compat",
"flake-utils": "flake-utils",
"nixpkgs": [
"bisq1",
"nixpkgs"
]
},
"locked": {
"lastModified": 1725758175,
"narHash": "sha256-MhBOJHYhIJ30TNVrm7wX8B3x+MecMCdaBc94g4HXkPs=",
"owner": "ralismark",
"repo": "nix-appimage",
"rev": "fc1192dbec82f5857f86ccc6dfdf2ad97bc9c62a",
"type": "github"
},
"original": {
"owner": "ralismark",
"repo": "nix-appimage",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1728241625,
"narHash": "sha256-yumd4fBc/hi8a9QgA9IT8vlQuLZ2oqhkJXHPKxH/tRw=",
"lastModified": 1727619874,
"narHash": "sha256-a4Jcd+vjQAzF675/7B1LN3U2ay22jfDAVA8pOml5J/0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "6710d0dd013f55809648dfb1265b8f85447d30a6",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "6710d0dd013f55809648dfb1265b8f85447d30a6",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1729665710,
"narHash": "sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c31898adf5a8ed202ce5bea9f347b1c6871f32d1",
"rev": "2768c7d042a37de65bb1b5b3268fc987e534c49d",
"type": "github"
},
"original": {
@ -18,7 +110,23 @@
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
"bisq1": "bisq1",
"nixpkgs": "nixpkgs_2"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},

View File

@ -5,9 +5,11 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
bisq1.url = "github:emmanuelrosa/bisq-for-nixos";
};
outputs = { self, nixpkgs, ... }:
outputs = { self, nixpkgs, bisq1, ... }:
{
@ -23,6 +25,10 @@
./configuration.nix
];
environment.systemPackages = with pkgs; [
bisq1.packages.x86_64-linux.bisq-desktop
];
};
};
}