chore: split off package and program opts
This commit is contained in:
parent
a29235acb6
commit
83c26c1e31
4 changed files with 20 additions and 0 deletions
|
@ -8,5 +8,6 @@
|
|||
./util-programs.nix
|
||||
./office-programs.nix
|
||||
./discord.nix
|
||||
./wayland-utils.nix
|
||||
];
|
||||
}
|
||||
|
|
8
home-manager/stvnliu/packages/wayland-utils.nix
Normal file
8
home-manager/stvnliu/packages/wayland-utils.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [wl-clipboard];
|
||||
}
|
|
@ -6,5 +6,6 @@
|
|||
}: {
|
||||
imports = [
|
||||
./git.nix
|
||||
./rofi.nix
|
||||
];
|
||||
}
|
||||
|
|
10
home-manager/stvnliu/programs/rofi.nix
Normal file
10
home-manager/stvnliu/programs/rofi.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue