feat(nixos): add nvf to flake

This commit is contained in:
Mohammad Rafiq 2025-02-25 05:51:55 +08:00
parent 5db623a5b1
commit 596b5680c6
3 changed files with 195 additions and 2 deletions

View file

@ -10,6 +10,8 @@
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
nvf.url = "github:NotAShelf/nvf";
nvf.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, ... } @ inputs: {
@ -21,7 +23,10 @@
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.rafiq = import ./users/rafiq;
home-manager.users.rafiq.imports = [
inputs.nvf.homeManagerModules.default
./users/rafiq
];
}
];
};