Add shared minimal profile
This commit is contained in:
parent
6156bf3f47
commit
3822106665
3 changed files with 24 additions and 20 deletions
21
profiles/minimal.nix
Normal file
21
profiles/minimal.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
];
|
||||
|
||||
nix.package = pkgs.lixPackageSets.stable.lix;
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(import ../overlays)
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue