Split default packages.

This commit is contained in:
2023-06-30 10:33:18 +01:00
parent c5f43030aa
commit 969f173f5c
3 changed files with 7 additions and 4 deletions

View File

@@ -19,8 +19,4 @@
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
vim
];
} }

View File

@@ -1,6 +1,7 @@
{ {
imports = [ imports = [
./locale.nix ./locale.nix
./packages.nix
./sudo.nix ./sudo.nix
]; ];

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
];
}