mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
chore: update work setup
This commit is contained in:
parent
a329abb6c0
commit
98b686e5a5
9 changed files with 57 additions and 48 deletions
|
|
@ -10,13 +10,11 @@
|
|||
|
||||
experimental-features = "nix-command flakes";
|
||||
substituters = [
|
||||
"https://hyprland.cachix.org"
|
||||
"https://nix-community.cachix.org"
|
||||
"https://install.determinate.systems"
|
||||
];
|
||||
|
||||
trusted-public-keys = [
|
||||
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM="
|
||||
];
|
||||
|
|
|
|||
|
|
@ -45,7 +45,6 @@
|
|||
};
|
||||
|
||||
transform = lib.mkOption {
|
||||
# https://wiki.hyprland.org/Configuring/Monitors/#rotating
|
||||
type = lib.types.nullOr lib.types.int;
|
||||
default = null;
|
||||
example = 1;
|
||||
|
|
|
|||
|
|
@ -28,10 +28,7 @@ in {
|
|||
prefer-no-csd = true;
|
||||
clipboard.disable-primary = true;
|
||||
spawn-at-startup = [
|
||||
{command = ["systemctl" "--user" "start" "hypridle"];}
|
||||
{command = ["systemctl" "--user" "start" "hyprpaper"];}
|
||||
{command = ["systemctl" "--user" "start" "mako"];}
|
||||
{command = ["systemctl" "--user" "start" "waybar"];}
|
||||
];
|
||||
xwayland-satellite = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ in {
|
|||
{
|
||||
type = "hacker-news";
|
||||
collapse-after = 10;
|
||||
limit = 20;
|
||||
limit = 30;
|
||||
}
|
||||
{
|
||||
type = "rss";
|
||||
|
|
|
|||
|
|
@ -29,6 +29,41 @@ in {
|
|||
profiles.default = {
|
||||
enableUpdateCheck = true;
|
||||
enableExtensionUpdateCheck = true;
|
||||
userMcp = {
|
||||
inputs = [
|
||||
{
|
||||
type = "promptString";
|
||||
id = "context7-api-key";
|
||||
description = "Context7 API Key";
|
||||
password = true;
|
||||
}
|
||||
];
|
||||
servers = {
|
||||
linear = {
|
||||
url = "https://mcp.linear.app/mcp";
|
||||
type = "http";
|
||||
};
|
||||
sentry = {
|
||||
url = "https://mcp.sentry.dev/mcp";
|
||||
type = "http";
|
||||
};
|
||||
figma = {
|
||||
url = "https://mcp.figma.com/mcp";
|
||||
type = "http";
|
||||
};
|
||||
context7 = {
|
||||
type = "http";
|
||||
url = "https://mcp.context7.com/mcp";
|
||||
headers = {
|
||||
CONTEXT7_API_KEY = "\${input:context7-api-key}";
|
||||
};
|
||||
};
|
||||
insight = {
|
||||
url = "https://insight.mcp.aortl.net/mcp";
|
||||
type = "http";
|
||||
};
|
||||
};
|
||||
};
|
||||
keybindings = [
|
||||
{
|
||||
"key" = "ctrl+shift+p";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue