Compare commits

...

6 commits

Author SHA1 Message Date
GaspardCulis
955c5bb579 fix(eww -> nix): Added missing script program requirements 2024-09-20 18:26:32 +02:00
GaspardCulis
1eb99380ea fix(bin): Fixed shebang paths 2024-09-20 18:22:45 +02:00
GaspardCulis
629dd4730c fix(Zephyrus): Remove "nvtop" as is is unfree 2024-09-20 18:17:21 +02:00
GaspardCulis
027b971f8a feat(eww -> nix): Link eww-bard script to local bin with HM 2024-09-20 18:15:00 +02:00
GaspardCulis
9547d9812e feat(Zephyrus): Added some utility system packages 2024-09-20 18:14:01 +02:00
GaspardCulis
2949b77dd0 fix(helix): Fixed "jaaj" theme not being linked by HM 2024-09-20 17:56:03 +02:00
7 changed files with 25 additions and 18 deletions

View file

@ -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
];
}

View file

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

View file

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

View file

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

View file

@ -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" &

View file

@ -1,7 +1,4 @@
{
pkgs,
...
} : {
{pkgs, ...}: {
home.packages = [
pkgs.helix
];
@ -9,6 +6,7 @@
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,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;