Revert "nix flake update"

This reverts commit ce4f49dc98.
This commit is contained in:
Oliver Davies 2025-02-27 01:06:50 +00:00
parent ce4f49dc98
commit f734ae4e06
5 changed files with 46 additions and 32 deletions

View file

@ -9,9 +9,9 @@
home.packages = with pkgs; [
build-glove80
gscan2pdf
kdePackages.okular
meslo-lg
obs-studio
okular
pamixer
pavucontrol
xcape

View file

@ -2,6 +2,12 @@
{
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
firefox = {
enable = true;
languagePacks = [ "en-GB" ];

View file

@ -1,5 +1,13 @@
{ pkgs, ... }:
{
programs = {
dconf.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
};
}

View file

@ -11,6 +11,6 @@ with lib;
options.features.desktop.media.kdenlive.enable = mkEnableOption "Enable kdenlive";
config = mkIf config.features.desktop.media.kdenlive.enable {
home.packages = with pkgs; [ kdePackages.kdenlive ];
home.packages = with pkgs; [ kdenlive ];
};
}