my entire config is in shambles

This commit is contained in:
Osman Faruk Bayram 2025-09-25 11:22:16 +03:00
parent 80cc1969f6
commit b703bd4fe7
2 changed files with 34 additions and 12 deletions

View file

@ -69,26 +69,47 @@
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 = {
from = { type = "indirect"; id = "my-nixpkgs"; };
to = {
owner = "osbm"; owner = "osbm";
repo = "nixpkgs"; repo = "nixpkgs";
type = "github"; type = "github";
}; };
osbm-dev.to = { };
osbm-dev = {
from = { type = "indirect"; id = "osbm-dev"; };
to = {
owner = "osbm"; owner = "osbm";
repo = "osbm.dev"; repo = "osbm.dev";
type = "github"; type = "github";
}; };
devshells.to = { };
devshells = {
from = { type = "indirect"; id = "devshells"; };
to = {
owner = "osbm"; owner = "osbm";
repo = "devshells"; repo = "devshells";
type = "github"; type = "github";
}; };
}; };
};
nix.settings.trusted-users = [ nix.settings.trusted-users = [
"root" "root"

View file

@ -78,6 +78,7 @@
type = "github"; type = "github";
}; };
}; };
};
nix.settings.trusted-users = [ nix.settings.trusted-users = [
"root" "root"