13 lines
173 B
Nix
13 lines
173 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
fish.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
brightnessctl
|
|
nixfmt-rfc-style
|
|
treefmt
|
|
wget
|
|
];
|
|
}
|