25 lines
612 B
Nix
Executable File
25 lines
612 B
Nix
Executable File
{ config, pkgs, lib, username, ... }:
|
|
|
|
# TODO: add OCR keybind on gnome
|
|
{
|
|
programs.home-manager.enable = true;
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
imports = [
|
|
./modules/zsh/zsh.nix
|
|
./modules/kitty.nix
|
|
./modules/git.nix
|
|
./modules/programs.nix
|
|
./modules/tmux.nix
|
|
./modules/cursor.nix
|
|
] ++ lib.optional (builtins.getEnv "DISABLE_HYPR" != "1")
|
|
./modules/hypr/hypr.nix
|
|
++ lib.optional (builtins.pathExists ./modules/my.nix) ./modules/my.nix;
|
|
|
|
# TODO: make it universal
|
|
|
|
home.username = username;
|
|
home.homeDirectory = "/home/${username}";
|
|
home.stateVersion = "25.11";
|
|
}
|