Files
nixfiles/home/main.nix
2025-12-17 21:43:32 +05:00

23 lines
302 B
Nix

{ 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";
}