mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
multiple things + tried gpg signing
This commit is contained in:
Generated
+13
@@ -203,6 +203,18 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-local": {
|
||||
"locked": {
|
||||
"lastModified": 1780728942,
|
||||
"narHash": "sha256-NjXPlIssFzJ8vazKaihsW773r/Kq2TTby7FKBlbWIg4=",
|
||||
"path": "/home/tomasr/devel/fugit2-gpgme",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/home/tomasr/devel/fugit2-gpgme",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
"nixpkgs-notifier": {
|
||||
"inputs": {
|
||||
"flake-utils": [
|
||||
@@ -313,6 +325,7 @@
|
||||
"microPlugins-vivify": "microPlugins-vivify",
|
||||
"nixos-grub-themes": "nixos-grub-themes",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"nixpkgs-local": "nixpkgs-local",
|
||||
"nixpkgs-notifier": "nixpkgs-notifier",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"notewrapper": "notewrapper"
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
|
||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; # used for some packages
|
||||
nixos-grub-themes.url = "github:jeslie0/nixos-grub-themes";
|
||||
|
||||
# This one is only used when testing some packaging. You must change the path to the correct nixpkgs clone
|
||||
nixpkgs-local.url = "path:/home/tomasr/devel/fugit2-gpgme";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-26.05";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -59,8 +62,9 @@
|
||||
};
|
||||
pkgs = mkPkgs inputs.nixpkgs;
|
||||
pkgs-unstable = mkPkgs inputs.nixpkgs-unstable;
|
||||
pkgs-local = mkPkgs inputs.nixpkgs-local;
|
||||
in {
|
||||
inherit pkgs pkgs-unstable;
|
||||
inherit pkgs pkgs-unstable pkgs-local;
|
||||
};
|
||||
}
|
||||
// (inputs.import-tree ./modules));
|
||||
|
||||
@@ -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