forked from foxora/nix
merged #1
This commit is contained in:
commit
5c0e3c2656
31 changed files with 940 additions and 845 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
|
||||
|
||||
|
|
@ -267,7 +267,7 @@
|
|||
|
||||
kitty = {
|
||||
enable = true;
|
||||
package = pkgs.kitty;
|
||||
package = upkgs.kitty;
|
||||
|
||||
font = {
|
||||
name = "DepartureMono Nerd Font Mono";
|
||||
|
|
@ -290,7 +290,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