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:
Generated
+13
@@ -203,6 +203,18 @@
|
|||||||
"type": "github"
|
"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": {
|
"nixpkgs-notifier": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": [
|
"flake-utils": [
|
||||||
@@ -313,6 +325,7 @@
|
|||||||
"microPlugins-vivify": "microPlugins-vivify",
|
"microPlugins-vivify": "microPlugins-vivify",
|
||||||
"nixos-grub-themes": "nixos-grub-themes",
|
"nixos-grub-themes": "nixos-grub-themes",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
|
"nixpkgs-local": "nixpkgs-local",
|
||||||
"nixpkgs-notifier": "nixpkgs-notifier",
|
"nixpkgs-notifier": "nixpkgs-notifier",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"notewrapper": "notewrapper"
|
"notewrapper": "notewrapper"
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
|
||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; # used for some packages
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; # used for some packages
|
||||||
nixos-grub-themes.url = "github:jeslie0/nixos-grub-themes";
|
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 = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-26.05";
|
url = "github:nix-community/home-manager/release-26.05";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
@@ -59,8 +62,9 @@
|
|||||||
};
|
};
|
||||||
pkgs = mkPkgs inputs.nixpkgs;
|
pkgs = mkPkgs inputs.nixpkgs;
|
||||||
pkgs-unstable = mkPkgs inputs.nixpkgs-unstable;
|
pkgs-unstable = mkPkgs inputs.nixpkgs-unstable;
|
||||||
|
pkgs-local = mkPkgs inputs.nixpkgs-local;
|
||||||
in {
|
in {
|
||||||
inherit pkgs pkgs-unstable;
|
inherit pkgs pkgs-unstable pkgs-local;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// (inputs.import-tree ./modules));
|
// (inputs.import-tree ./modules));
|
||||||
|
|||||||
@@ -11,9 +11,9 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
flake.nixosModules.kdrive-desktop = {pkgs-unstable, ...}: {
|
flake.nixosModules.kdrive-desktop = {pkgs, ...}: {
|
||||||
environment.systemPackages = with pkgs-unstable; [
|
environment.systemPackages = [
|
||||||
rclone
|
pkgs.rclone
|
||||||
self.packages.${pkgs.system}.custom-checkKdrive
|
self.packages.${pkgs.system}.custom-checkKdrive
|
||||||
self.packages.${pkgs.system}.custom-synckdrive-desktop
|
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 = {
|
programs.neovim = {
|
||||||
withRuby = false;
|
withRuby = false;
|
||||||
withPython3 = false;
|
withPython3 = false;
|
||||||
@@ -59,7 +59,7 @@ _: {
|
|||||||
pkgs-unstable.vimPlugins.cheatsheet-nvim
|
pkgs-unstable.vimPlugins.cheatsheet-nvim
|
||||||
pkgs-unstable.vimPlugins.popup-nvim
|
pkgs-unstable.vimPlugins.popup-nvim
|
||||||
pkgs-unstable.vimPlugins.vim-visual-multi
|
pkgs-unstable.vimPlugins.vim-visual-multi
|
||||||
pkgs-unstable.vimPlugins.fugit2-nvim
|
pkgs-local.vimPlugins.fugit2-nvim
|
||||||
pkgs-unstable.vimPlugins.nvim-lastplace
|
pkgs-unstable.vimPlugins.nvim-lastplace
|
||||||
pkgs-unstable.vimPlugins.runner-nvim # terminal
|
pkgs-unstable.vimPlugins.runner-nvim # terminal
|
||||||
pkgs-unstable.vimPlugins.better-diagnostic-virtual-text
|
pkgs-unstable.vimPlugins.better-diagnostic-virtual-text
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
flake.nixosConfigurations.desktop = inputs.nixpkgs.lib.nixosSystem {
|
flake.nixosConfigurations.desktop = inputs.nixpkgs.lib.nixosSystem {
|
||||||
#system = "x86_64-linux";
|
#system = "x86_64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit (self) pkgs-unstable;
|
inherit (self) pkgs-unstable pkgs-local;
|
||||||
};
|
};
|
||||||
modules = with self.nixosModules; [
|
modules = with self.nixosModules; [
|
||||||
# important do not remove
|
# important do not remove
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
flake.nixosConfigurations.laptop = inputs.nixpkgs.lib.nixosSystem {
|
flake.nixosConfigurations.laptop = inputs.nixpkgs.lib.nixosSystem {
|
||||||
#system = "x86_64-linux";
|
#system = "x86_64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit (self) pkgs-unstable;
|
inherit (self) pkgs-unstable pkgs-local;
|
||||||
};
|
};
|
||||||
modules = with self.nixosModules; [
|
modules = with self.nixosModules; [
|
||||||
# important do not remove
|
# important do not remove
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit (self) pkgs-unstable;
|
inherit (self) pkgs-unstable pkgs-local;
|
||||||
inherit self;
|
inherit self;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -31,6 +31,8 @@
|
|||||||
ltex-ls-plus
|
ltex-ls-plus
|
||||||
pylint
|
pylint
|
||||||
black
|
black
|
||||||
|
gnupg
|
||||||
|
pinentry-curses
|
||||||
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
|
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user