Compare commits

..

No commits in common. "4eb41499533d4fa7ca63675eb0d196bb0365c3ea" and "ec45f12c12941c93cb6ae2eab42e14c8b659a59d" have entirely different histories.

6 changed files with 15 additions and 38 deletions

26
flake.lock generated
View file

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

View file

@ -1,8 +1,6 @@
{ pkgs, ... }: {lib, ...}: {
{
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,7 +16,6 @@
./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,10 +36,8 @@
", longpress:4, killactive" ", longpress:4, killactive"
", longpress:3, sendshortcut, , F," ", longpress:2, movewindow"
]; ];
hyprgrass-bindm = [ ", longpress:2, movewindow" ];
}; };
}; };
} }

View file

@ -16,12 +16,6 @@
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";

View file

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