Compare commits
3 Commits
9f3082ff5a
...
998af79fb6
Author | SHA1 | Date |
---|---|---|
Zynh Ludwig | 998af79fb6 | |
Zynh Ludwig | af4f7265e0 | |
Zynh Ludwig | bfd130c879 |
|
@ -125,6 +125,7 @@
|
||||||
rustup
|
rustup
|
||||||
gnumake
|
gnumake
|
||||||
zig
|
zig
|
||||||
|
gcc
|
||||||
go
|
go
|
||||||
python3
|
python3
|
||||||
nodejs_22
|
nodejs_22
|
||||||
|
|
6
home.nix
6
home.nix
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -33,6 +33,10 @@
|
||||||
|
|
||||||
home.file = { };
|
home.file = { };
|
||||||
|
|
||||||
|
home.sessionPath = [
|
||||||
|
"${config.home.homeDirectory}/.cargo/bin"
|
||||||
|
];
|
||||||
|
|
||||||
# wayland.windowManager.hyprland = {
|
# wayland.windowManager.hyprland = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# package = pkgs.hyprland;
|
# package = pkgs.hyprland;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
systemctl --user import-environment DISPLAY XAUTHORITY
|
||||||
while true; do
|
while true; do
|
||||||
sleep 1 && date +"<-- %A, %B %d -- %H:%M -->" | xargs -I% xsetroot -name %
|
sleep 1 && date +"<-- %A, %B %d -- %H:%M -->" | xargs -I% xsetroot -name %
|
||||||
done
|
done
|
||||||
|
|
|
@ -27,6 +27,7 @@ in
|
||||||
script = builtins.readFile ../home/scripts/x-root-datetime.sh;
|
script = builtins.readFile ../home/scripts/x-root-datetime.sh;
|
||||||
wantedBy = [ "graphical-session.target" ];
|
wantedBy = [ "graphical-session.target" ];
|
||||||
partOf = [ "graphical-session.target" ];
|
partOf = [ "graphical-session.target" ];
|
||||||
|
after = [ "graphical-session.target" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Reference in New Issue