mirror of
https://github.com/nmasur/dotfiles
synced 2025-11-21 18:42:42 +00:00
try to make builds work
This commit is contained in:
24
flake.lock
generated
24
flake.lock
generated
@@ -148,29 +148,6 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"helix": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"rust-overlay": [
|
||||
"rust-overlay"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1762973522,
|
||||
"narHash": "sha256-CFyvvZvKDkTFF7niIQp5hhks5OR1u10H3e89chURCkg=",
|
||||
"owner": "helix-editor",
|
||||
"repo": "helix",
|
||||
"rev": "948ac05aa0db64e0e5d00710db36eb244076e988",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "helix-editor",
|
||||
"repo": "helix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"home-manager": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
@@ -363,7 +340,6 @@
|
||||
"inputs": {
|
||||
"darwin": "darwin",
|
||||
"disko": "disko",
|
||||
"helix": "helix",
|
||||
"home-manager": "home-manager",
|
||||
"mac-app-util": "mac-app-util",
|
||||
"nix2vim": "nix2vim",
|
||||
|
||||
12
flake.nix
12
flake.nix
@@ -75,12 +75,12 @@
|
||||
inputs.rust-overlay.follows = "rust-overlay";
|
||||
};
|
||||
|
||||
# Text editor
|
||||
helix = {
|
||||
url = "github:helix-editor/helix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.rust-overlay.follows = "rust-overlay";
|
||||
};
|
||||
# # Text editor
|
||||
# helix = {
|
||||
# url = "github:helix-editor/helix";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# inputs.rust-overlay.follows = "rust-overlay";
|
||||
# };
|
||||
|
||||
# # Nextcloud Apps
|
||||
# nextcloud-news = {
|
||||
|
||||
@@ -67,7 +67,7 @@ lib
|
||||
inputs.nur.overlays.default
|
||||
inputs.nix2vim.overlay
|
||||
inputs.zellij-switch.overlays.default
|
||||
inputs.helix.overlays.default
|
||||
# inputs.helix.overlays.default
|
||||
]
|
||||
++ (importOverlays ../overlays);
|
||||
|
||||
|
||||
@@ -2,6 +2,12 @@ inputs: _final: prev: {
|
||||
|
||||
awscli2 = prev.awscli2.overrideAttrs (
|
||||
finalAttrs: previousAttrs: {
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "aws";
|
||||
repo = "aws-cli";
|
||||
rev = "2.31.27";
|
||||
hash = "sha256-NnAEdbIZVri9Bi0KBlcZIVox+LbuD0/hBdtYB/UFHeo=";
|
||||
};
|
||||
disabledTestPaths = previousAttrs.disabledTestPaths ++ [
|
||||
"tests/unit/customizations"
|
||||
];
|
||||
|
||||
@@ -189,7 +189,7 @@ in
|
||||
auto-format = true;
|
||||
file-types = [ "hcl" ];
|
||||
formatter = {
|
||||
command = lib.getExe pkgs.packer;
|
||||
command = "${pkgs.packer}/bin/packer";
|
||||
args = [
|
||||
"fmt"
|
||||
"-"
|
||||
|
||||
@@ -29,6 +29,7 @@ in
|
||||
pkgs.pop # Send emails from a TUI
|
||||
|
||||
pkgs.crush # AI LLM Agent
|
||||
pkgs.gemini-cli # AI LLM Agent
|
||||
|
||||
];
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ in
|
||||
helix.enable = lib.mkDefault true;
|
||||
jujutsu.enable = lib.mkDefault true;
|
||||
lazygit.enable = lib.mkDefault true;
|
||||
neovim.enable = lib.mkDefault true;
|
||||
# neovim.enable = lib.mkDefault true;
|
||||
nix-index.enable = lib.mkDefault true;
|
||||
nixpkgs.enable = lib.mkDefault true;
|
||||
notes.enable = lib.mkDefault true;
|
||||
|
||||
Reference in New Issue
Block a user