introducting rive in flake, extending git
This commit is contained in:
22
flake.nix
22
flake.nix
@@ -29,6 +29,24 @@
|
||||
];
|
||||
};
|
||||
secrets = import ./secrets/passwords-and-certificates.nix;
|
||||
rice = {
|
||||
transparency = "0.8";
|
||||
colors = {
|
||||
main-fg = "#ffffff";
|
||||
main-bg = "#000000";
|
||||
bubble-fg = "#ffffff";
|
||||
bubble-bg = "#222222";
|
||||
bubble-border = "#bbbbbb";
|
||||
secondary-fg = "#ffffff";
|
||||
secondary-bg = "#222255";
|
||||
lines = "#bbbbbb";
|
||||
accent = "#ff00ff"
|
||||
};
|
||||
font = {
|
||||
code = "CascadiaCove-NF";
|
||||
base = "Atkinson Hyperlegible";
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
@@ -37,7 +55,7 @@
|
||||
modules = [
|
||||
./configuration.nix
|
||||
];
|
||||
specialArgs = {inherit user allowed secrets;};
|
||||
specialArgs = {inherit user allowed secrets rice;};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -45,7 +63,7 @@
|
||||
nx2 = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [ ./home.nix ];
|
||||
extraSpecialArgs = {inherit system user allowed secrets pkgs-unstable;};
|
||||
extraSpecialArgs = {inherit system user allowed secrets pkgs-unstable rice;};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user