nix flake update

This commit is contained in:
Oliver Davies 2025-02-27 00:17:38 +00:00
parent 6d55ea4dee
commit ce4f49dc98
5 changed files with 32 additions and 46 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,12 +2,6 @@
{
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
firefox = {
enable = true;
languagePacks = [ "en-GB" ];

View file

@ -1,13 +1,5 @@
{ 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; [ kdenlive ];
home.packages = with pkgs; [ kdePackages.kdenlive ];
};
}