summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-04-08 21:37:13 -0600
committerAlejandro Soto <alejandro@34project.org>2022-04-08 21:44:58 -0600
commit096894cb135e9612ab9f7203ac2f2bed8ac4ab72 (patch)
treea93e7bf48d95bf7efd46f03e36e7a1bcfe726a91 /home
parentbdb9209d4a85f087efd5919c80f01b121f94778a (diff)
home: switch from alacritty to st
Diffstat (limited to '')
-rw-r--r--home/alacritty.nix64
-rw-r--r--home/default.nix8
-rw-r--r--home/i3-config.nix7
-rw-r--r--home/path.nix1
4 files changed, 5 insertions, 75 deletions
diff --git a/home/alacritty.nix b/home/alacritty.nix
deleted file mode 100644
index 7a40b67..0000000
--- a/home/alacritty.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{
- window = {
- decorations = "none";
- dynamic_title = false;
- };
-
- font = {
- normal = {
- family = "Hack";
- style = "Regular";
- };
-
- bold = {
- family = "Hack";
- style = "Bold";
- };
-
- italic = {
- family = "Hack";
- style = "Italic";
- };
-
- bold_italic = {
- family = "Hack";
- style = "Bold Italic";
- };
-
- size = 17.0;
- };
-
- colors = {
- primary = {
- background = "#000000";
- foreground = "#ffffff";
- };
-
- selection = {
- text = "CellForeground";
- background = "CellForeground";
- };
-
- normal = {
- black = "#000000";
- red = "#cc6666";
- green = "#b5bd68";
- yellow = "#f0c674";
- blue = "#81a2be";
- magenta = "#b294bb";
- cyan = "#8abeb7";
- white = "#ffffff";
- };
-
- bright = {
- black = "#000000";
- red = "#d54e53";
- green = "#b9ca4a";
- yellow = "#e7c547";
- blue = "#7aa6da";
- magenta = "#c397d8";
- cyan = "#70c0b1";
- white = "#ffffff";
- };
- };
-}
diff --git a/home/default.nix b/home/default.nix
index 95e0893..4f1da74 100644
--- a/home/default.nix
+++ b/home/default.nix
@@ -88,9 +88,8 @@ with lib; {
"i3/config".text = import ./i3-config.nix {
inherit (pkgs) i3lock-color xautolock;
inherit (pkgs.xorg) setxkbmap;
- inherit (pkgs.local) tmux-lift;
+ inherit (pkgs.local) st tmux-lift;
- alacritty = config.programs.alacritty.package;
i3status-rust = config.programs.i3status-rust.package;
rofi = config.programs.rofi.finalPackage;
};
@@ -117,11 +116,6 @@ with lib; {
initExtra = import ./zshrc.nix pkgs;
};
- alacritty = {
- enable = true;
- settings = import ./alacritty.nix;
- };
-
firefox = {
enable = true;
diff --git a/home/i3-config.nix b/home/i3-config.nix
index 5dca33d..dfc0024 100644
--- a/home/i3-config.nix
+++ b/home/i3-config.nix
@@ -1,6 +1,5 @@
-{ alacritty, i3lock-color, i3status-rust
-, rofi, setxkbmap, tmux-lift, xautolock
-}: ''
+{ i3lock-color, i3status-rust, rofi, setxkbmap, st, tmux-lift, xautolock }:
+''
# This file has been auto-generated by i3-config-wizard(1).# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
@@ -32,7 +31,7 @@
floating_modifier $mod
# start a terminal
- bindsym $mod+Return exec ${alacritty}/bin/alacritty -e ${tmux-lift}/bin/lift
+ bindsym $mod+Return exec ${st}/bin/st -e ${tmux-lift}/bin/lift
# kill focused window
bindsym $mod+Shift+q kill
diff --git a/home/path.nix b/home/path.nix
index a967935..d8ca0be 100644
--- a/home/path.nix
+++ b/home/path.nix
@@ -25,6 +25,7 @@ in [
pkgs.local.scripts
pkgs.signal-desktop
pkgs.socat
+ pkgs.local.st
pkgs.tdesktop
pkgs.local.tmux-lift
pkgs.units