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

View file

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

View file

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

View file

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

View file

@ -16,6 +16,12 @@
hostname = "nixserver";
};
"lilith-lab-proxy" = {
user = "lilith";
hostname = "10.0.1.1";
proxyJump = "lilith-server";
};
"lilith-server" = {
user = "lilith";
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;
};
}