Compare commits

..

No commits in common. "955c5bb579790263d95448001951fd67f192d814" and "feb7cd1e343a0aef78a2471e8c31a16f3e5fa56e" have entirely different histories.

7 changed files with 18 additions and 25 deletions

View file

@ -1,17 +1,15 @@
{pkgs, ...}: { {
pkgs,
...
} : {
home.file = { home.file = {
".config/eww".source = ../eww; ".config/eww".source = ../eww;
# Eww-barD script
".local/bin/eww-bard" = {
source = ../../bin/eww-bard;
executable = true;
};
}; };
home.packages = [ home.packages = [
pkgs.eww pkgs.eww
# Script dependencies
pkgs.jq
pkgs.socat
]; ];
} }

View file

@ -1,4 +1,4 @@
#!/usr/bin/env dash #!/bin/dash
# Monitor duplication daemon # Monitor duplication daemon
WIDGET_NAME=bar WIDGET_NAME=bar

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/python
jaajs = [ jaajs = [
""" """

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
xmodmap -e "keycode 10 = 1" xmodmap -e "keycode 10 = 1"
xmodmap -e "keycode 11 = 2" xmodmap -e "keycode 11 = 2"

View file

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
alacritty --class "uwu-uwu" -e /usr/bin/bash -c "uwu | dotacat && read" & alacritty --class "uwu-uwu" -e /usr/bin/bash -c "uwu | dotacat && read" &
alacritty --class "uwu-neofetch" -e /usr/bin/bash -c "echo '' && neofetch && read" & alacritty --class "uwu-neofetch" -e /usr/bin/bash -c "echo '' && neofetch && read" &

View file

@ -1,12 +1,14 @@
{pkgs, ...}: { {
home.packages = [ pkgs,
...
} : {
home.packages =[
pkgs.helix pkgs.helix
]; ];
home.file = { home.file = {
".config/helix/config.toml".source = ./config.toml; ".config/helix/config.toml".source = ./config.toml;
".config/helix/languages.toml".source = ./languages.toml; ".config/helix/languages.toml".source = ./languages.toml;
".config/helix/themes/jaaj.toml".source = ./themes/jaaj.toml;
}; };
home.sessionVariables = { home.sessionVariables = {

View file

@ -39,14 +39,7 @@
}; };
# Programs # Programs
environment.systemPackages = [ environment.systemPackages = [pkgs.git];
pkgs.git
pkgs.dash
pkgs.ncdu
pkgs.neofetch
pkgs.bottom
pkgs.htop
];
# Services # Services
services.seatd.enable = true; services.seatd.enable = true;