8 lines
183 B
Nix
8 lines
183 B
Nix
{ inputs, pkgs, ... }: {
|
|
# Install newsboat
|
|
home.packages = [ pkgs.newsboat ];
|
|
|
|
# Setup my config file
|
|
home.file = { ".config/newsboat/config".source = ./confs/newsboat; };
|
|
}
|