Compare commits
2 commits
7b1800548e
...
f0cdafad6a
| Author | SHA1 | Date | |
|---|---|---|---|
| f0cdafad6a | |||
| 004be60807 |
3 changed files with 10 additions and 5 deletions
|
|
@ -198,14 +198,14 @@
|
||||||
# "https://hyprland.cachix.org"
|
# "https://hyprland.cachix.org"
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
"https://pre-commit-hooks.cachix.org"
|
"https://pre-commit-hooks.cachix.org"
|
||||||
# "https://ghostty.cachix.org"
|
"https://ghostty.cachix.org"
|
||||||
"https://cache.lix.systems"
|
"https://cache.lix.systems"
|
||||||
];
|
];
|
||||||
extra-trusted-public-keys = [
|
extra-trusted-public-keys = [
|
||||||
# "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
# "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
"pre-commit-hooks.cachix.org-1:Pkk3Panw5AW24TOv6kz3PvLhlH8puAsJTBbOPmBo7Rc="
|
"pre-commit-hooks.cachix.org-1:Pkk3Panw5AW24TOv6kz3PvLhlH8puAsJTBbOPmBo7Rc="
|
||||||
# "ghostty.cachix.org-1:QB389yTa6gTyneehvqG58y0WnHjQOqgnA+wBnpWWxns="
|
"ghostty.cachix.org-1:QB389yTa6gTyneehvqG58y0WnHjQOqgnA+wBnpWWxns="
|
||||||
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
|
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,12 @@ in
|
||||||
chromium.enable = mkDefault true;
|
chromium.enable = mkDefault true;
|
||||||
firefox.enable = mkDefault true;
|
firefox.enable = mkDefault true;
|
||||||
gpg.enable = mkDefault true;
|
gpg.enable = mkDefault true;
|
||||||
river.enable = mkDefault true;
|
ghostty.settings = {
|
||||||
|
font-family = "IntoneMono Nerd Font";
|
||||||
|
window-decoration = false;
|
||||||
|
font-feature = [ "ss01" "ss02" ];
|
||||||
|
};
|
||||||
|
niri.enable = mkDefault true;
|
||||||
nix-edit.enable = mkDefault true;
|
nix-edit.enable = mkDefault true;
|
||||||
nvim.enable = mkDefault true;
|
nvim.enable = mkDefault true;
|
||||||
python.versions."311".enable = mkDefault true;
|
python.versions."311".enable = mkDefault true;
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,10 @@ in
|
||||||
go = [ "gofmt" ];
|
go = [ "gofmt" ];
|
||||||
json = [ "jq" ];
|
json = [ "jq" ];
|
||||||
lua = [ "stylua" ];
|
lua = [ "stylua" ];
|
||||||
nix.__raw = ''{ "nixpkgs_fmt", "alejandra", stop_after_first=true }'';
|
nix = [ "nixpkgs_fmt" ];
|
||||||
python.__raw = ''
|
python.__raw = ''
|
||||||
function(bufnr)
|
function(bufnr)
|
||||||
return { first("ruff_organize_imports", "isort"), first("ruff_format", "black")}
|
return { first(bufnr, "ruff_organize_imports", "isort"), first(bufnr, "ruff_format", "black")}
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
rust = [ "rustfmt" ];
|
rust = [ "rustfmt" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue