Clean up flakes
This commit is contained in:
parent
c67f45b57d
commit
1155e7d79b
2 changed files with 19 additions and 37 deletions
40
flake.lock
generated
40
flake.lock
generated
|
@ -56,38 +56,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-nixos-2111": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1650647313,
|
|
||||||
"narHash": "sha256-6ghnNPXDlG6/tXeIFdbP0cGnik6TGNwc615hhG9dpl4=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "a318a09a96a38382fe61a7f85d03ea6e25c46c56",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixos-21.11",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs-nixos-unstable": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1650161686,
|
|
||||||
"narHash": "sha256-70ZWAlOQ9nAZ08OU6WY7n4Ij2kOO199dLfNlvO/+pf8=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "1ffba9f2f683063c2b14c9f4d12c55ad5f4ed887",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs-stable": {
|
"nixpkgs-stable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1650647313,
|
"lastModified": 1650647313,
|
||||||
|
@ -122,8 +90,12 @@
|
||||||
},
|
},
|
||||||
"qois-infrastructure": {
|
"qois-infrastructure": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs-nixos-2111": "nixpkgs-nixos-2111",
|
"nixpkgs-nixos-2111": [
|
||||||
"nixpkgs-nixos-unstable": "nixpkgs-nixos-unstable"
|
"nixpkgs-stable"
|
||||||
|
],
|
||||||
|
"nixpkgs-nixos-unstable": [
|
||||||
|
"nixpkgs-unstable"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1650722675,
|
"lastModified": 1650722675,
|
||||||
|
|
16
flake.nix
16
flake.nix
|
@ -1,15 +1,25 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
|
# Upstream deps
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-21.11";
|
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-21.11";
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
||||||
|
|
||||||
|
# Packages
|
||||||
home-manager.url = "github:nix-community/home-manager/release-21.11";
|
home-manager.url = "github:nix-community/home-manager/release-21.11";
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||||
qois-infrastructure.url = "git+file:///etc/nixos/qois-infrastructure";
|
|
||||||
threema.url = "git+file:///etc/nixos/defaults/threema";
|
|
||||||
threema.inputs.nixpkgs-unstable.follows = "nixpkgs-unstable";
|
|
||||||
fabianhauser-etaxes-sg.url = "github:fabianhauser/etaxes-sg-nix";
|
fabianhauser-etaxes-sg.url = "github:fabianhauser/etaxes-sg-nix";
|
||||||
fabianhauser-etaxes-sg.inputs.nixpkgs.follows = "nixpkgs-stable";
|
fabianhauser-etaxes-sg.inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||||
|
|
||||||
|
# Private Deps
|
||||||
|
qois-infrastructure = {
|
||||||
|
url = "git+file:///etc/nixos/qois-infrastructure";
|
||||||
|
inputs.nixpkgs-nixos-2111.follows = "nixpkgs-stable";
|
||||||
|
inputs.nixpkgs-nixos-unstable.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
|
threema.url = "git+file:///etc/nixos/defaults/threema";
|
||||||
|
threema.inputs.nixpkgs-unstable.follows = "nixpkgs-unstable";
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs-unstable, nixpkgs-stable, home-manager
|
outputs = { self, nixpkgs-unstable, nixpkgs-stable, home-manager
|
||||||
|
|
Loading…
Add table
Reference in a new issue