my entire config is in shambles
This commit is contained in:
parent
80cc1969f6
commit
b703bd4fe7
2 changed files with 34 additions and 12 deletions
|
|
@ -69,24 +69,45 @@
|
||||||
|
|
||||||
nix.channel.enable = false;
|
nix.channel.enable = false;
|
||||||
|
|
||||||
|
|
||||||
nix.registry = {
|
nix.registry = {
|
||||||
self.flake = inputs.self;
|
self.flake = inputs.self;
|
||||||
nixpkgs.flake = inputs.nixpkgs;
|
nixpkgs.flake = inputs.nixpkgs;
|
||||||
|
|
||||||
|
# Commented out because i want to make sure it works if i switch a system
|
||||||
|
# to another nixpkgs with a different flake input name
|
||||||
|
# nixpkgs = {
|
||||||
|
# from = { type = "indirect"; id = "nixpkgs"; };
|
||||||
|
# to = {
|
||||||
|
# path = pkgs.path;
|
||||||
|
# type = "path";
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
|
||||||
osbm-nvim.flake = inputs.osbm-nvim;
|
osbm-nvim.flake = inputs.osbm-nvim;
|
||||||
my-nixpkgs.to = {
|
my-nixpkgs = {
|
||||||
owner = "osbm";
|
from = { type = "indirect"; id = "my-nixpkgs"; };
|
||||||
repo = "nixpkgs";
|
to = {
|
||||||
type = "github";
|
owner = "osbm";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
type = "github";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
osbm-dev.to = {
|
osbm-dev = {
|
||||||
owner = "osbm";
|
from = { type = "indirect"; id = "osbm-dev"; };
|
||||||
repo = "osbm.dev";
|
to = {
|
||||||
type = "github";
|
owner = "osbm";
|
||||||
|
repo = "osbm.dev";
|
||||||
|
type = "github";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
devshells.to = {
|
devshells = {
|
||||||
owner = "osbm";
|
from = { type = "indirect"; id = "devshells"; };
|
||||||
repo = "devshells";
|
to = {
|
||||||
type = "github";
|
owner = "osbm";
|
||||||
|
repo = "devshells";
|
||||||
|
type = "github";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,7 @@
|
||||||
repo = "devshells";
|
repo = "devshells";
|
||||||
type = "github";
|
type = "github";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.settings.trusted-users = [
|
nix.settings.trusted-users = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue