switched nvim-flake to unstable

switched nix off of master
added nixpkgs and system to registry
moved X to tty1 and fixed kmscon to not run on tty1
This commit is contained in:
Gerg-L 2023-02-17 21:27:54 -05:00
parent 81319aa076
commit 32a4a75654
8 changed files with 62 additions and 20 deletions

10
nix.nix
View file

@ -5,12 +5,12 @@
}: {
inputs,
lib,
pkgs,
self,
settings,
...
}: {
nix = {
package = nix.packages.${pkgs.system}.nix;
# package = nix.packages.${pkgs.system}.nix;
#automatically get registry from input flakes
registry =
(
@ -26,6 +26,10 @@
)
inputs
)
// {
nixpkgs.flake = unstable;
system.flake = self;
}
)
// {system = {flake = self;};};
#automatically add registry entries to nixPath
@ -37,7 +41,7 @@
flake-registry = builtins.toFile "empty-flake-registry.json" ''{"flakes":[],"version":2}'';
keep-outputs = true;
keep-derivations = true;
trusted-users = [
trusted-users = [
"root"
"@wheel"
];