Configure git

This commit is contained in:
2026-02-26 21:04:54 +01:00
parent 8c2c715aa3
commit 6903724321
4 changed files with 54 additions and 17 deletions

View File

@@ -1,4 +1,11 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
let
dotfiles_hypr = pkgs.fetchgit {
url = "https://git.nichkara.eu/dotfiles/hypr";
rev = "96f9ca03450049baffbc8a2b71c3a40367edd2a5";
sha256 = lib.fakeSha256;
};
in
{
environment.systemPackages = with pkgs; [
wofi
@@ -18,4 +25,11 @@
xwayland.enable = true;
};
home-manager.users.nichkara = { ... }: {
home.file.".config/hypr" = {
source = dotfiles_hypr;
recursive = true;
};
};
}