{ pkgs, config, inputs, ... }: { imports = [ # Programs ../../home/programs/brave ../../home/programs/proton ../../home/programs/proton/auto-start-vpn.nix ../../home/programs/ghostty ../../home/programs/nvf ../../home/programs/shell ../../home/programs/fetch ../../home/programs/git ../../home/programs/git/lazygit.nix ../../home/programs/git/signing.nix # Change the key or remove this file ../../home/programs/spicetify ../../home/programs/thunar ../../home/programs/discord ../../home/programs/nixy ../../home/programs/zathura ../../home/programs/nightshift ../../home/programs/group/cybersecurity.nix ../../home/programs/nix-utils # System (Desktop environment like stuff) ../../home/system/hyprland ../../home/system/caelestia-shell ../../home/system/hyprpaper ../../home/system/mime ../../home/system/udiskie ./variables.nix # Mostly user-specific configuration ./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets ]; home = { packages = with pkgs; [ # Apps vlc # Video player blanket # White-noise app obsidian # Note taking app textpieces # Manipulate texts resources # Ressource monitor gnome-clocks # Clocks app gnome-text-editor # Basic graphic text editor mpv # Video player ticktick # Todo app session-desktop # Session app, private messages signal-desktop # Signal app, private messages stirling-pdf # PDF Editor calibre # Ebooks swappy # Screenshot tool pinta # Image editor notesnook element-desktop clamtk # Dev go bun inputs.bun2nix.packages.${system}.default docker nodejs python3 jq just air duckdb lazydocker # Just cool peaclock cbonsai pipes cmatrix fastfetch ]; inherit (config.var) username; homeDirectory = "/home/" + config.var.username; # Import a profile picture, used by the caelestia dashboard file.".face" = {source = ./profile_picture.png;}; sessionVariables = { AQ_DRM_DEVICES = "/dev/dri/card2:/dev/dri/card1"; # CHANGEME: Related to the GPU }; # Don't touch this stateVersion = "24.05"; }; programs.home-manager.enable = true; }