feat(nix): Configure nix/nix.conf
This commit is contained in:
parent
624f9da761
commit
ed98099bf9
2 changed files with 20 additions and 5 deletions
|
@ -6,10 +6,19 @@
|
|||
|
||||
# NOTE: List packages installed in system profile. To search by name, run:
|
||||
# `nix-env -qaP | grep wget`
|
||||
environment.systemPackages =
|
||||
environment = {
|
||||
etc = {
|
||||
"nix/nix.conf".text =
|
||||
''
|
||||
experimental-features = nix-command flakes
|
||||
build-users-group = nixbld
|
||||
'';
|
||||
};
|
||||
systemPackages =
|
||||
common.packages ++ [
|
||||
pkgs.zoxide
|
||||
];
|
||||
};
|
||||
|
||||
nixpkgs.hostPlatform = pkgs.system;
|
||||
};
|
||||
|
|
|
@ -5,5 +5,11 @@
|
|||
username = "ziro";
|
||||
};
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
xdg.configFile = {
|
||||
"nix/nix.conf".text = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
|
||||
home.stateVersion = "24.11";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue