mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-24 08:31:54 -05:00
flake: simplify inputs
This commit is contained in:
parent
50e9e9320e
commit
4b7410ddbc
|
@ -433,7 +433,7 @@
|
|||
"iio-hyprland": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgsUnstable"
|
||||
"nixpkgs"
|
||||
],
|
||||
"systems": "systems_3"
|
||||
},
|
||||
|
@ -474,11 +474,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1718530797,
|
||||
"narHash": "sha256-pup6cYwtgvzDpvpSCFh1TEUjw2zkNpk8iolbKnyFmmU=",
|
||||
"lastModified": 1718895438,
|
||||
"narHash": "sha256-k3JqJrkdoYwE3fHE6xGDY676AYmyh4U2Zw+0Bwe5DLU=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "b60ebf54c15553b393d144357375ea956f89e9a9",
|
||||
"rev": "d603719ec6e294f034936c0d0dc06f689d91b6c3",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
## Motion sensor and auto-rotate for Hyprland.
|
||||
iio-hyprland = {
|
||||
url = "github:JeanSchoeller/iio-hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgsUnstable";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# Stable home-manager, synced with latest stable nixpkgs.
|
||||
|
@ -106,6 +106,7 @@
|
|||
./hosts/${host}
|
||||
inputs.agenix.nixosModules.default
|
||||
inputs.disko.nixosModules.disko
|
||||
inputs.hyprland.nixosModules.default
|
||||
inputs.nixvim.nixosModules.nixvim
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
self.nixosModules.default
|
||||
|
@ -115,6 +116,7 @@
|
|||
|
||||
sharedModules = [
|
||||
inputs.agenix.homeManagerModules.default
|
||||
inputs.hyprland.homeManagerModules.default
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
self.homeManagerModules.default
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue