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 ./hardware-configuration.nix
]; ];
boot.supportedFilesystems = [ "ntfs" ]; boot.supportedFilesystems = [ "ntfs" ];
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.auto-optimise-store = true; nix.settings.auto-optimise-store = true;
nix.settings.substituters = [ nix.settings.substituters = [

View File

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

View File

@ -21,7 +21,7 @@ in
}; };
config.nixpkgs.overlays = lib.mkIf cfg.enableOverlays [materusArg.cfg.configInputs.emacs-overlay.overlay]; 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 { config.nix.registry = lib.mkIf config.materus.profile.nix.enableRegistry {
nixpkgs-stable = { nixpkgs-stable = {
from = { type = "indirect"; id = "nixpkgs-stable"; }; from = { type = "indirect"; id = "nixpkgs-stable"; };

View File

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

View File

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