chore: split off package and program opts

This commit is contained in:
Zhongheng Liu 2024-10-02 17:33:00 +03:00
commit 83c26c1e31
No known key found for this signature in database
4 changed files with 20 additions and 0 deletions

View file

@ -8,5 +8,6 @@
./util-programs.nix ./util-programs.nix
./office-programs.nix ./office-programs.nix
./discord.nix ./discord.nix
./wayland-utils.nix
]; ];
} }

View file

@ -0,0 +1,8 @@
{
pkgs,
config,
lib,
...
}: {
home.packages = with pkgs; [wl-clipboard];
}

View file

@ -6,5 +6,6 @@
}: { }: {
imports = [ imports = [
./git.nix ./git.nix
./rofi.nix
]; ];
} }

View file

@ -0,0 +1,10 @@
{
pkgs,
config,
lib,
...
}: {
programs.rofi = {
enable = true;
};
}