56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
# This is your home-manager configuration file
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
|
|
{ inputs, outputs, lib, config, pkgs, username, useremail, hyprland, ... }:
|
|
{
|
|
# You can import other home-manager modules here
|
|
imports = [
|
|
# If you want to use modules your own flake exports (from modules/home-manager):
|
|
# outputs.homeManagerModules.example
|
|
|
|
# Or modules exported from other flakes (such as nix-colors):
|
|
# inputs.nix-colors.homeManagerModules.default
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
|
./core
|
|
../modules/home/hyprland
|
|
../modules/home/v2ray
|
|
../modules/home/xdg
|
|
../modules/home/theme
|
|
../modules/home/fcitx
|
|
../modules/home/vscode
|
|
../modules/home/develop
|
|
];
|
|
|
|
home = {
|
|
# Add stuff for your user as you see fit:
|
|
packages = with pkgs; [
|
|
bc # GNU software calculator
|
|
vlc
|
|
imv
|
|
microsoft-edge
|
|
# firefox
|
|
# chromium
|
|
|
|
zip
|
|
unzip
|
|
lsof
|
|
htop
|
|
pciutils # lspci etc.
|
|
xorg.xhost
|
|
];
|
|
|
|
sessionVariables = {
|
|
JAVA_HOME = "";
|
|
};
|
|
};
|
|
|
|
|
|
|
|
# Enable home-manager and git
|
|
programs = {
|
|
home-manager.enable = true;
|
|
# git.enable = true;
|
|
};
|
|
}
|