flake: simplify inputs

This commit is contained in:
Aly Raffauf 2024-06-23 00:10:30 -04:00
parent 50e9e9320e
commit 4b7410ddbc
2 changed files with 7 additions and 5 deletions

View file

@ -433,7 +433,7 @@
"iio-hyprland": { "iio-hyprland": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"nixpkgsUnstable" "nixpkgs"
], ],
"systems": "systems_3" "systems": "systems_3"
}, },
@ -474,11 +474,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1718530797, "lastModified": 1718895438,
"narHash": "sha256-pup6cYwtgvzDpvpSCFh1TEUjw2zkNpk8iolbKnyFmmU=", "narHash": "sha256-k3JqJrkdoYwE3fHE6xGDY676AYmyh4U2Zw+0Bwe5DLU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b60ebf54c15553b393d144357375ea956f89e9a9", "rev": "d603719ec6e294f034936c0d0dc06f689d91b6c3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -19,7 +19,7 @@
## Motion sensor and auto-rotate for Hyprland. ## Motion sensor and auto-rotate for Hyprland.
iio-hyprland = { iio-hyprland = {
url = "github:JeanSchoeller/iio-hyprland"; url = "github:JeanSchoeller/iio-hyprland";
inputs.nixpkgs.follows = "nixpkgsUnstable"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# Stable home-manager, synced with latest stable nixpkgs. # Stable home-manager, synced with latest stable nixpkgs.
@ -106,6 +106,7 @@
./hosts/${host} ./hosts/${host}
inputs.agenix.nixosModules.default inputs.agenix.nixosModules.default
inputs.disko.nixosModules.disko inputs.disko.nixosModules.disko
inputs.hyprland.nixosModules.default
inputs.nixvim.nixosModules.nixvim inputs.nixvim.nixosModules.nixvim
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
self.nixosModules.default self.nixosModules.default
@ -115,6 +116,7 @@
sharedModules = [ sharedModules = [
inputs.agenix.homeManagerModules.default inputs.agenix.homeManagerModules.default
inputs.hyprland.homeManagerModules.default
inputs.nixvim.homeManagerModules.nixvim inputs.nixvim.homeManagerModules.nixvim
self.homeManagerModules.default self.homeManagerModules.default
]; ];