Compare commits
6 commits
feb7cd1e34
...
955c5bb579
Author | SHA1 | Date | |
---|---|---|---|
|
955c5bb579 | ||
|
1eb99380ea | ||
|
629dd4730c | ||
|
027b971f8a | ||
|
9547d9812e | ||
|
2949b77dd0 |
7 changed files with 25 additions and 18 deletions
|
@ -1,15 +1,17 @@
|
|||
{
|
||||
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
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/dash
|
||||
#!/usr/bin/env dash
|
||||
|
||||
# Monitor duplication daemon
|
||||
WIDGET_NAME=bar
|
||||
|
|
2
bin/jaaj
2
bin/jaaj
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/env python
|
||||
|
||||
jaajs = [
|
||||
"""
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
xmodmap -e "keycode 10 = 1"
|
||||
xmodmap -e "keycode 11 = 2"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
alacritty --class "uwu-uwu" -e /usr/bin/bash -c "uwu | dotacat && read" &
|
||||
alacritty --class "uwu-neofetch" -e /usr/bin/bash -c "echo '' && neofetch && read" &
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
} : {
|
||||
home.packages =[
|
||||
{pkgs, ...}: {
|
||||
home.packages = [
|
||||
pkgs.helix
|
||||
];
|
||||
|
||||
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 = {
|
||||
|
|
|
@ -39,7 +39,14 @@
|
|||
};
|
||||
|
||||
# Programs
|
||||
environment.systemPackages = [pkgs.git];
|
||||
environment.systemPackages = [
|
||||
pkgs.git
|
||||
pkgs.dash
|
||||
pkgs.ncdu
|
||||
pkgs.neofetch
|
||||
pkgs.bottom
|
||||
pkgs.htop
|
||||
];
|
||||
|
||||
# Services
|
||||
services.seatd.enable = true;
|
||||
|
|
Loading…
Reference in a new issue