12 lines
168 B
Nix
12 lines
168 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
fish.enable = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
brightnessctl
|
|
nixfmt-rfc-style
|
|
nixfmt-tree
|
|
];
|
|
}
|