lets not use nixPath

This commit is contained in:
Osman Faruk Bayram 2025-04-21 14:11:41 +03:00
parent b39608ca80
commit 9db6ed05b0

View file

@ -28,23 +28,25 @@
# enable nix flakes
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
# nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
nix.channel.enable = false;
nix.registry = {
self.flake = inputs.self;
osbm-nvim = {
to = {
owner = "osbm";
repo = "osbm-nvim";
type = "github";
};
from = {
id = "osbm-nvim";
type = "indirect";
};
};
nixpkgs = inputs.nixpkgs;
# osbm-nvim = {
# to = {
# owner = "osbm";
# repo = "osbm-nvim";
# type = "github";
# };
# from = {
# id = "osbm-nvim";
# type = "indirect";
# };
# };
osbm-nvim = inputs.osbm-nvim;
};
nix.settings.trusted-users = ["root" "osbm"];