Use new i3utils package

This commit is contained in:
2022-04-23 17:52:23 +01:00
parent ec73d821aa
commit 0d56231235
4 changed files with 37 additions and 34 deletions

View File

@@ -5,12 +5,13 @@
nixpkgs.url = "nixpkgs/nixos-unstable";
i3utils.url = "git+https://git.sr.ht/~dpatterbee/i3utils?ref=main";
i3utils.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { nixpkgs, home-manager, i3utils, ... }:
outputs = { nixpkgs, home-manager, i3utils, ... }@inputs:
let
system = "x86_64-linux";
@@ -26,10 +27,6 @@
modules = [
./hosts/${hostname}/configuration.nix
({ pkgs, ... }: {
nixpkgs.overlays = [ i3utils.overlay ];
})
home-manager.nixosModules.home-manager
{
home-manager = {
@@ -39,6 +36,8 @@
};
}
];
specialArgs = {inherit inputs;};
};
in {