mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 15:13:55 -05:00
pegged nix-flatpak to stable 0.3.0
This commit is contained in:
parent
7f02443960
commit
c075cbb963
|
@ -23,15 +23,16 @@
|
|||
},
|
||||
"nix-flatpak": {
|
||||
"locked": {
|
||||
"lastModified": 1708781964,
|
||||
"narHash": "sha256-qbEZgB1mNuMADLmM64EtcRjDHXR3UFL4xVmoanv9wZU=",
|
||||
"lastModified": 1699563939,
|
||||
"narHash": "sha256-2Z4IP5Vb7jDVaDrKMO1tzLvpfuBpgTk9kJ2Okurv7rc=",
|
||||
"owner": "gmodena",
|
||||
"repo": "nix-flatpak",
|
||||
"rev": "09d07c73b4d9771f527a168e0b1b6d8a1f39de28",
|
||||
"rev": "df3ea9930422fb14bf00e857ff771ddb85aafba6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "gmodena",
|
||||
"ref": "v0.1.0",
|
||||
"repo": "nix-flatpak",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
11
flake.nix
11
flake.nix
|
@ -2,10 +2,13 @@
|
|||
description = "Aly's NixOS configuration.";
|
||||
|
||||
inputs = {
|
||||
# Main NixOS channel
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
||||
# handles flatpaks
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases.
|
||||
# home-manager, used for managing user configuration
|
||||
|
||||
# Declarative Flatpaks
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.1.0";
|
||||
|
||||
# Home-manager, used for managing user configuration
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-23.11";
|
||||
# The `follows` keyword in inputs is used for inheritance.
|
||||
|
@ -14,6 +17,8 @@
|
|||
# to avoid problems caused by different versions of nixpkgs.
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# Pre-baked hardware support for various devices.
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue