mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
24 lines
453 B
Nix
24 lines
453 B
Nix
# ~/.config/nixcfgs/users/js0ny/default.nix
|
|
{
|
|
pkgs,
|
|
nix-flatpak,
|
|
plasma-manager,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./programs/git.nix
|
|
../../modules/home/programs/fzf.nix
|
|
../../modules/home/programs/lsd.nix
|
|
../../modules/home/programs/zoxide.nix
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
home.username = "js0ny";
|
|
home.homeDirectory = "/home/js0ny";
|
|
|
|
home.packages = with pkgs; [
|
|
home-manager
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|