mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
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:
parent
81319aa076
commit
32a4a75654
8 changed files with 62 additions and 20 deletions
10
nix.nix
10
nix.nix
|
|
@ -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"
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue