mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:59:42 +00:00
11 lines
169 B
Nix
11 lines
169 B
Nix
|
{ pkgs, lib, ... }: {
|
||
|
imports = [
|
||
|
./nano.nix
|
||
|
];
|
||
|
|
||
|
# Basic list of must-have packages for all systems
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
vim
|
||
|
];
|
||
|
}
|