mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
ee0cb3cf68
Signed-off-by: Hadi <hadi@example.com>
67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Programs
|
|
|
|
## GUI
|
|
../../home/programs/gui/proton
|
|
../../home/programs/gui/helium
|
|
../../home/programs/gui/thunar
|
|
../../home/programs/gui/pkgs.nix
|
|
|
|
## TUI
|
|
inputs.nvf-config.homeManagerModules.default
|
|
../../home/programs/tui/ghostty
|
|
../../home/programs/tui/shell
|
|
../../home/programs/tui/git
|
|
../../home/programs/tui/git/lazygit.nix
|
|
../../home/programs/tui/nixy
|
|
../../home/programs/tui/nix-utils
|
|
../../home/programs/tui/spotatui
|
|
../../home/programs/tui/yazi
|
|
../../home/programs/tui/pkgs.nix
|
|
|
|
## GROUPS
|
|
../../home/programs/group/cybersecurity.nix
|
|
../../home/programs/group/dev.nix
|
|
|
|
# System (Desktop environment like stuff)
|
|
../../home/system/hyprlock
|
|
../../home/system/hyprland
|
|
../../home/system/waybar
|
|
../../home/system/swaync
|
|
../../home/system/tofi
|
|
../../home/system/mime
|
|
../../home/system/termfilechooser
|
|
../../home/system/udiskie
|
|
../../home/system/clipboard
|
|
../../home/system/hypridle
|
|
|
|
./variables.nix # Mostly user-specific configuration
|
|
./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
|
];
|
|
|
|
home = {
|
|
inherit (config.var) username;
|
|
homeDirectory = "/home/" + config.var.username;
|
|
|
|
# Don't touch this
|
|
stateVersion = "26.05";
|
|
};
|
|
|
|
wayland.windowManager.hyprland.settings.monitor = [
|
|
"desc:Philips Consumer Electronics Company PHL 221B8L ZV02144013987,highres,0x0,1"
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
nixy = {
|
|
enable = true;
|
|
configDirectory = config.var.configDirectory;
|
|
};
|
|
};
|
|
}
|