Initial commit

This commit is contained in:
duck
2025-12-17 21:43:32 +05:00
commit 591831666f
38 changed files with 2382 additions and 0 deletions

22
home/main.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
home.username = "duck";
home.homeDirectory = "/home/duck";
imports = [
./apps/nvim.nix
./apps/fish.nix
./apps/tmux.nix
];
nvim.editor = true;
home.packages = [
pkgs.git
pkgs.lazygit
];
programs.home-manager.enable = true;
home.stateVersion = "25.11";
}