changed everything to default.nix

This commit is contained in:
biscuit
2025-05-21 11:11:26 -05:00
parent 7e77b1acd4
commit 694042f027
16 changed files with 2 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
{pkgs, ...}: let
# wofiSource = pkgs.fetchFromGitHub {
# owner = "adi1090x";
# repo = "rofi";
# rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
# hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
# };
wofiSource = builtins.toPath ./launcher;
in {
programs.wofi.enable = true;
# home.file.".config/wofi" = {
# source = wofiSource;
# recursive = true;
# force = true;
# };
}