multiple things + tried gpg signing

This commit is contained in:
2026-06-06 09:30:35 +02:00
parent f7861f7ca1
commit 6830973233
7 changed files with 28 additions and 9 deletions
+3 -3
View File
@@ -11,9 +11,9 @@
enable = true;
};
};
flake.nixosModules.kdrive-desktop = {pkgs-unstable, ...}: {
environment.systemPackages = with pkgs-unstable; [
rclone
flake.nixosModules.kdrive-desktop = {pkgs, ...}: {
environment.systemPackages = [
pkgs.rclone
self.packages.${pkgs.system}.custom-checkKdrive
self.packages.${pkgs.system}.custom-synckdrive-desktop
];
+2 -2
View File
@@ -1,5 +1,5 @@
_: {
flake.homeModules.neovim = {pkgs-unstable, ...}: {
flake.homeModules.neovim = {pkgs-unstable, pkgs-local,...}: {
programs.neovim = {
withRuby = false;
withPython3 = false;
@@ -59,7 +59,7 @@ _: {
pkgs-unstable.vimPlugins.cheatsheet-nvim
pkgs-unstable.vimPlugins.popup-nvim
pkgs-unstable.vimPlugins.vim-visual-multi
pkgs-unstable.vimPlugins.fugit2-nvim
pkgs-local.vimPlugins.fugit2-nvim
pkgs-unstable.vimPlugins.nvim-lastplace
pkgs-unstable.vimPlugins.runner-nvim # terminal
pkgs-unstable.vimPlugins.better-diagnostic-virtual-text
+1 -1
View File
@@ -7,7 +7,7 @@
flake.nixosConfigurations.desktop = inputs.nixpkgs.lib.nixosSystem {
#system = "x86_64-linux";
specialArgs = {
inherit (self) pkgs-unstable;
inherit (self) pkgs-unstable pkgs-local;
};
modules = with self.nixosModules; [
# important do not remove
+2 -2
View File
@@ -6,7 +6,7 @@
flake.nixosConfigurations.laptop = inputs.nixpkgs.lib.nixosSystem {
#system = "x86_64-linux";
specialArgs = {
inherit (self) pkgs-unstable;
inherit (self) pkgs-unstable pkgs-local;
};
modules = with self.nixosModules; [
# important do not remove
@@ -104,7 +104,7 @@
useUserPackages = true;
extraSpecialArgs = {
inherit (self) pkgs-unstable;
inherit (self) pkgs-unstable pkgs-local;
inherit self;
};
};
+2
View File
@@ -31,6 +31,8 @@
ltex-ls-plus
pylint
black
gnupg
pinentry-curses
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
];
};