common: change remove rnix-lsp, add nil and nixpkgs-fmt, move nix default package to common

This commit is contained in:
Mateusz Słodkowicz 2024-03-11 16:15:04 +01:00
parent c88c7c029a
commit 8ecb892244
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
5 changed files with 9 additions and 9 deletions

View File

@ -82,7 +82,6 @@ in
./hardware-configuration.nix
];
boot.supportedFilesystems = [ "ntfs" ];
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.auto-optimise-store = true;
nix.settings.substituters = [

View File

@ -26,6 +26,8 @@
gcc
gdb
nil
nixfmt
nixpkgs-fmt
cmake
gnumake
ninja

View File

@ -21,7 +21,7 @@ in
};
config.nixpkgs.overlays = lib.mkIf cfg.enableOverlays [materusArg.cfg.configInputs.emacs-overlay.overlay];
config.nix.package = lib.mkDefault pkgs.nixUnstable;
config.nix.registry = lib.mkIf config.materus.profile.nix.enableRegistry {
nixpkgs-stable = {
from = { type = "indirect"; id = "nixpkgs-stable"; };

View File

@ -20,8 +20,8 @@ with materusArg.pkgs.lib;
nix-tree
nix-diff
nix-ld
rnix-hashes
rnix-lsp
nil
nixpkgs-fmt
nixpkgs-review
]);

View File

@ -5,7 +5,6 @@ in
{
options.materus.profile.nix.enable = materusArg.pkgs.lib.mkBoolOpt false "Enable materus nix settings";
config.nix = lib.mkIf cfg.enable {
package = lib.mkDefault pkgs.nixVersions.unstable;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" "no-url-literals" ];