Substitute out nix core settings
This commit is contained in:
parent
1350635af0
commit
2ec4b32561
4 changed files with 48 additions and 17 deletions
|
|
@ -1,5 +1,4 @@
|
|||
({ pkgs, ... }: {
|
||||
services.nix-daemon.enable = true;
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
|
|
@ -21,9 +20,6 @@
|
|||
];
|
||||
})
|
||||
];
|
||||
nix.extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
||||
system.defaults = {
|
||||
dock.autohide = true;
|
||||
|
|
|
|||
6
.config/nix/modules/nix-core.nix
Normal file
6
.config/nix/modules/nix-core.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
services.nix-daemon.enable = true;
|
||||
programs.nix-index.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue