9 lines
170 B
Nix
9 lines
170 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
grim # needed for screenshots/flameshot
|
|
swww
|
|
];
|
|
}
|