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 = {
".config/eww".source = ../eww;
# Eww-barD script
".local/bin/eww-bard" = {
source = ../../bin/eww-bard;
executable = true;
};
};
home.packages = [
pkgs.eww
# Script dependencies
pkgs.jq
pkgs.socat
];
}

View file

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

View file

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

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
xmodmap -e "keycode 10 = 1"
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-neofetch" -e /usr/bin/bash -c "echo '' && neofetch && read" &

View file

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

View file

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