Initial commit

This commit is contained in:
demenik
2025-12-01 18:24:34 +01:00
commit fc68fa5ce9
142 changed files with 6273 additions and 0 deletions

33
home/demenik.nix Normal file
View File

@@ -0,0 +1,33 @@
{pkgs, ...}: {
imports = [
./global.nix
./xdg-desktop.nix
./accounts
./desktops/hyprland
./services/kanshi.nix
./services/bisync.nix
./shells/zsh
./terminals/kitty
./programs
./editors/nvim
./editors/intellij.nix
./editors/cursor.nix
];
home.file.".face" = {
source = pkgs.fetchurl {
url = "https://github.com/demenik.png";
hash = "sha256-+1ugmn5qeAvijj5Lm3Ye0rW9UEF9OCGxiSMfZKVjxI4=";
};
};
home.packages = with pkgs; [
mpvpaper
];
services.swww.enable = true;
}