Replace manual xdg.configFile symlinks and fetchFromGitHub theme fetching with programs.rofi options and the catppuccin/nix flake module. Also removes unused pywal module from magicman. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
267 B
Nix
15 lines
267 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./noita-helper.nix
|
|
];
|
|
home.file.".local/bin/hl-no-opacity" = {
|
|
source = ./hl-no-opacity.sh;
|
|
executable = true;
|
|
};
|
|
home.file.".local/bin/randomwp" = {
|
|
source = ./randomwp.sh;
|
|
executable = true;
|
|
};
|
|
}
|