{ pkgs, ... }: let unstable = import {}; packages = (with pkgs; [ anki discord krita prismlauncher qbittorrent spotify vlc obs-studio audacity ]) ++ (with unstable; [ neovide ]); in { home = { # Home Manager needs a bit of information about you and the # paths it should manage. username = "kamov"; homeDirectory = "/home/kamov"; # Packages that should be installed to the user profile. packages = packages; }; programs = { # default shell fish.enable = true; git = { enable = true; userName = "Maciej Jur"; userEmail = "maciej@kamoshi.org"; signing = { signByDefault = true; key = "191CBFF5F72ECAFD!"; }; }; }; services.kdeconnect.enable = true; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards # incompatible changes. # # You can update Home Manager without changing this value. See # the Home Manager release notes for a list of state version # changes in each release. home.stateVersion = "24.05"; }