london: add cutter and ghidra

This commit is contained in:
Victor Mignot 2024-08-03 07:09:32 +02:00
parent ab9bae3a10
commit 407e60a9d8
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D

View file

@ -1,7 +1,6 @@
{ {
pkgs, pkgs,
config, config,
lib,
extraInfo, extraInfo,
... ...
}: }:
@ -68,27 +67,35 @@
]; ];
uid = 1000; uid = 1000;
shell = pkgs.fish; shell = pkgs.fish;
hmConfig = { hmConfig =
programs.helix.enable = true; { pkgs, ... }:
my.desktop.sway.monitors = [ {
{ programs.helix.enable = true;
name = "Iiyama North America PL2470H 0x0000047B";
resolution = "1920x1080@165.003Hz";
position = "1920 0";
defaultWorkspace = 1;
}
{
name = "Iiyama North America PL2530H 1154392601941";
resolution = "1920x1080@74.973Hz";
position = "0 0";
defaultWorkspace = 2;
}
];
nixpkgs.config.allowUnfree = true; home.packages = with pkgs; [
my.development.embedded-tools.enable = true; cutter
my.games.wine.enable = true; ghidra
}; ];
my.desktop.sway.monitors = [
{
name = "Iiyama North America PL2470H 0x0000047B";
resolution = "1920x1080@165.003Hz";
position = "1920 0";
defaultWorkspace = 1;
}
{
name = "Iiyama North America PL2530H 1154392601941";
resolution = "1920x1080@74.973Hz";
position = "0 0";
defaultWorkspace = 2;
}
];
nixpkgs.config.allowUnfree = true;
my.development.embedded-tools.enable = true;
my.games.wine.enable = true;
};
}; };
}; };
} }