Compare commits

...

2 commits

3 changed files with 29 additions and 11 deletions

View file

@ -30,7 +30,7 @@
]; ];
outputs-builder = channels: { outputs-builder = channels: {
formatter = channels.nixpkgs.nixfmt-rfc-style; formatter = channels.nixpkgs.alejandra;
}; };
alias = { alias = {

View file

@ -16,7 +16,7 @@ in
# FIXME: Remove this once nvim is set up # FIXME: Remove this once nvim is set up
home.packages = with pkgs; [ home.packages = with pkgs; [
nixfmt-rfc-style alejandra
nil nil
statix statix
manix manix

View file

@ -4,16 +4,34 @@
nix = { nix = {
package = pkgs.lix; package = pkgs.lix;
settings = {
trusted-users = [
"root"
config.marleyos.my.name
];
# Enable flakes. # Enable flakes.
settings.experimental-features = [ experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
]; ];
# Set up caches.
extra-substituters = [
"https://marleyos.cachix.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"marleyos.cachix.org-1:q2kEtqvS5CoQ8BmKlWOfOnN+fi4gUoSuL6HRKy37eCA="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
# Disable that annoying "git tree is dirty" warning. # Disable that annoying "git tree is dirty" warning.
extraOptions = '' warn-dirty = false;
warn-dirty = false
''; auto-optimise-store = true;
};
# Garbage collection. # Garbage collection.
gc.automatic = true; gc.automatic = true;