Compare commits

...

2 commits

Author SHA1 Message Date
Lilith
4eb4149953
ssh 2025-09-24 14:52:14 +02:00
Lilith
f8b76989ae
shell 2025-09-24 14:52:14 +02:00
6 changed files with 38 additions and 15 deletions

26
flake.lock generated
View file

@ -270,11 +270,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1755313937, "lastModified": 1755442500,
"narHash": "sha256-pQb7bNcolxYGRiylUCrTddiF+qW2wsUiM9+eRIDUrVU=", "narHash": "sha256-RHK4H6SWzkAtW/5WBHsyugaXJX25yr5y7FAZznxcBJs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2a749f4790a14f7168be67cdf6e548ef1c944e10", "rev": "d2ffdedfc39c591367b1ddf22b4ce107f029dcc3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -384,11 +384,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1755277479, "lastModified": 1755458331,
"narHash": "sha256-LrXtv1RIEds93j+OiSEvYFVX4fcGk2vrEzva19oxvco=", "narHash": "sha256-VzKflOdxS78WgxI6gmY0zkBKUa5MpytHI1PrKTWb23M=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "edc473e8b0c14e768445422080af9978d132bff6", "rev": "d8901786109dba6af3eac03c1e723f807ed0117a",
"revCount": 6365, "revCount": 6375,
"type": "git", "type": "git",
"url": "https://github.com/hyprwm/Hyprland" "url": "https://github.com/hyprwm/Hyprland"
}, },
@ -624,11 +624,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1755349684, "lastModified": 1755463657,
"narHash": "sha256-QtrpSxSSM89lD8omtAO53cuhvJAOjhdJjCCaXxdw1HU=", "narHash": "sha256-zlwwq8sVyIs/i3unqtQEqRXFVIxaFzxtjGEAnNQjUsc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "3cf12f4d0e401bfa50965b2cd4d5b401a05d729e", "rev": "b12cf912ef3f7d899cb78f3865c6f22befaca3ad",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -770,11 +770,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1755211397, "lastModified": 1755378131,
"narHash": "sha256-kw6iLWUj6+fiEpuc8ntrIzJ2gdS36wIcRINbKU0AIbA=", "narHash": "sha256-0GKZEzTUcaoama56xaagKnMk5hqMbTUfGF4KfzLwje4=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "928ca832d22ab3167b49dc5f4d52ff5d26b0b52a", "rev": "82242e0f9b1d91b6f170807a6ec622cfdb816eac",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,6 +1,8 @@
{lib, ...}: { { pkgs, ... }:
{
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
package = pkgs.alacritty-graphics;
settings = { settings = {
env.TERM = "xterm-256color"; env.TERM = "xterm-256color";
window = { window = {

View file

@ -16,6 +16,7 @@
./alacritty.nix ./alacritty.nix
./clipman.nix ./clipman.nix
./input.nix ./input.nix
./starship.nix
./common.nix ./common.nix
./direnv.nix ./direnv.nix

View file

@ -36,8 +36,10 @@
", longpress:4, killactive" ", longpress:4, killactive"
", longpress:2, movewindow" ", longpress:3, sendshortcut, , F,"
]; ];
hyprgrass-bindm = [ ", longpress:2, movewindow" ];
}; };
}; };
} }

View file

@ -16,6 +16,12 @@
hostname = "nixserver"; hostname = "nixserver";
}; };
"lilith-lab-proxy" = {
user = "lilith";
hostname = "10.0.1.1";
proxyJump = "lilith-server";
};
"lilith-server" = { "lilith-server" = {
user = "lilith"; user = "lilith";
hostname = "firelilith.org"; hostname = "firelilith.org";

12
home/lilith/starship.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
programs.starship = {
enable = true;
# presets = [ "nerd-font-symbols" ];
enableTransience = true;
enableBashIntegration = true;
enableNushellIntegration = true;
};
}