diff --git a/flake.nix b/flake.nix index c6f72cd..e7c3aa1 100644 --- a/flake.nix +++ b/flake.nix @@ -2,21 +2,17 @@ description = "Quickshell Hyprshell config"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; outputs = - inputs@{ - self, - nixpkgs, - home-manager, - ... - }: + { self, nixpkgs }: { homeManagerModules.default = - { config, lib, ... }: + { + config, + lib, + pkgs, + ... + }: { home.file.".config/quickshell/hyprshell".source = ./hyprshell; };