1
0
Fork 0
forked from foxora/nix

#1 hater of infinite recursion

This commit is contained in:
do butterflies cry? 2026-02-13 23:27:35 +10:00
parent 43b04c3f8a
commit a5bb1d1cc1
31 changed files with 946 additions and 851 deletions

View file

@ -2,9 +2,9 @@
# trans <3
{
inputs,
pkgs,
upkgs,
root,
system,
...
}: {
imports = [
@ -62,10 +62,10 @@
fonts.fontconfig.enable = true;
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${pkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
# some packages are enabled from their own module in ./modules
home.packages = with pkgs; [
home.packages = with upkgs; [
gcr # provides org.gnome.keyring.SystemPrompter
dix # nix diff
@ -266,7 +266,7 @@
kitty = {
enable = true;
package = pkgs.kitty;
package = upkgs.kitty;
font = {
name = "DepartureMono Nerd Font Mono";
@ -289,7 +289,7 @@
zen-browser = {
enable = true;
package = inputs.zen.packages."${pkgs.stdenv.hostPlatform.system}".twilight;
package = inputs.zen.packages.${system}.twilight;
};
mpv = {