Skip to content

[HM] [Flake] The option `home-manager.users.nightly.programs.nvf' does not exist. #616

Answered by bwfiq
pog5 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @pog5,

You can import it as in the following flake config:

{
  description = "simple NixOS flake with home-manager";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    home-manager.url = "github:nix-community/home-manager";
    home-manager.inputs.nixpkgs.follows = "nixpkgs";
    hyprland.url = "github:hyprwm/Hyprland";
    hyprland-plugins = {
      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: {
    nixosConfigurations.nemesis = nixpkgs.lib.nixosSystem {
      specialArgs = 

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@pog5
Comment options

@bwfiq
Comment options

Answer selected by pog5
@pog5
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #615 on February 11, 2025 11:26.