Skip to content

Commit

Permalink
Revert "Use colors.nix"
Browse files Browse the repository at this point in the history
This reverts commit d059441.
  • Loading branch information
Sigmanificient committed Sep 26, 2023
1 parent bea2690 commit adf71a3
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 58 deletions.
23 changes: 0 additions & 23 deletions colors.nix

This file was deleted.

7 changes: 3 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
system = "x86_64-linux";

pkgs = nixpkgs.legacyPackages.${system};
colors = import ./colors.nix;

default_modules = [
./config
Expand All @@ -49,7 +48,7 @@
useUserPackages = true;
users.${username} = import ./home;
extraSpecialArgs = {
inherit username system ecsls colors;
inherit username system ecsls;
};
};
}
Expand All @@ -69,7 +68,7 @@
inherit system;

specialArgs = {
inherit username colors;
inherit username;
hostname = "Bacon";
};

Expand All @@ -87,7 +86,7 @@
inherit system;

specialArgs = {
inherit username colors;
inherit username;
hostname = "Sigmachine";
};

Expand Down
2 changes: 1 addition & 1 deletion home/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, username, colors, ... }:
{ pkgs, username, ... }:
{
nixpkgs.config.allowUnfree = true;

Expand Down
4 changes: 2 additions & 2 deletions home/flameshot.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ colors, ... }:
{ ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
uiColor = colors.dark.blue;
uiColor = "#1435c7";
};
};
};
Expand Down
56 changes: 28 additions & 28 deletions home/kitty.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ colors, ... }:
{ ... }:
{
programs.kitty = {
enable = true;
Expand All @@ -25,35 +25,35 @@
tab_title_template = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}";

# colors
active_tab_foreground = colors.dark.black;
active_tab_background = colors.light.blue;
inactive_tab_foreground = colors.light.white;
inactive_tab_background = colors.light.black;
tab_bar_background = colors.dark.black;
active_tab_foreground = "#0F0F1C";
active_tab_background = "#8B8AF1";
inactive_tab_foreground = "#B4C0EC";
inactive_tab_background = "#1A1C31";
tab_bar_background = "#0F0F1C";

foreground = colors.light.white;
background = colors.light.black;
selection_foreground = colors.dark.black;
selection_background = colors.light.blue;
url_color = colors.light.white;
cursor = colors.dark.blue;
foreground = "#CAD3F5";
background = "#1A1C31";
selection_foreground = "#000000";
selection_background = "#A7A5FB";
url_color = "#8B8AF1";
cursor = "#82E3F8";

color0 = colors.dark.black;
color1 = colors.dark.red;
color2 = colors.dark.green;
color3 = colors.dark.yellow;
color4 = colors.dark.blue;
color5 = colors.dark.magenta;
color6 = colors.dark.cyan;
color7 = colors.dark.white;
color8 = colors.light.black;
color9 = colors.light.red;
color10 = colors.light.green;
color11 = colors.light.yellow;
color12 = colors.light.blue;
color13 = colors.light.magenta;
color14 = colors.light.cyan;
color15 = colors.light.white;
color0 = "#0F0F1C";
color1 = "#D22942";
color2 = "#17B67C";
color3 = "#F2A174";
color4 = "#8C8AF1";
color5 = "#D78AF1";
color6 = "#8ADEF1";
color7 = "#CAD3F5";
color8 = "#A2B1E8";
color9 = "#DE4259";
color10 = "#3FD7A0";
color11 = "#EED49F";
color12 = "#A7A5FB";
color13 = "#E5A5FB";
color14 = "#A5EBFB";
color15 = "#CAD3F5";

# Other
initial_window_width = 820;
Expand Down

0 comments on commit adf71a3

Please sign in to comment.