fixes 4 NORTH + yazi openers1

This commit is contained in:
nx2
2024-04-09 10:58:24 +02:00
parent b79ec3015a
commit cb121e283c
5 changed files with 232 additions and 66 deletions

View File

@@ -42,13 +42,13 @@
inecure-packages = [
"electron-25.9.0"
];
];
};
secrets = import ./secrets/passwords-and-certificates.nix;
rice = {
transparency = "0.9";
transparency = "0.8";
colors = rec {
main-fg = "#ffffff";
main-bg = "#000000";
@@ -56,7 +56,7 @@
bubble-bg = "#222222";
bubble-border = "#bbbbbb";
secondary-fg = main-fg;
secondary-bg = "#222255";
secondary-bg = "#111133";
lines = "#bbbbbb";
accent = "#ff00ff";
};
@@ -91,10 +91,15 @@
};
homeConfigurations = {
nx2 = home-manager.lib.homeManagerConfiguration {
NxXPS = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = { inherit system user allowed secrets pkgs-unstable rice nvidia; };
extraSpecialArgs = let host = "NxXPS"; in { inherit system user host allowed secrets pkgs-unstable rice nvidia; };
};
NxNORTH = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = let host = "NxNORTH"; in { inherit system user host allowed secrets pkgs-unstable rice nvidia; };
};
};