forked from foxora/nix
#1 hater of infinite recursion
This commit is contained in:
parent
43b04c3f8a
commit
a5bb1d1cc1
31 changed files with 946 additions and 851 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue