24 lines
330 B
Nix
24 lines
330 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
fish.enable = true;
|
|
git.enable = true;
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
bc
|
|
jq
|
|
socat
|
|
acpi
|
|
btrfs-progs
|
|
duf
|
|
lsof
|
|
pciutils
|
|
];
|
|
} |