mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
multiple things + tried gpg signing
This commit is contained in:
@@ -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
|
||||
];
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -31,6 +31,8 @@
|
||||
ltex-ls-plus
|
||||
pylint
|
||||
black
|
||||
gnupg
|
||||
pinentry-curses
|
||||
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user