From 407e60a9d886cc09d9e2bb7f5cfdc7561e89349b Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Sat, 3 Aug 2024 07:09:32 +0200 Subject: [PATCH] london: add cutter and ghidra --- configurations/london/default.nix | 49 ++++++++++++++++++------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/configurations/london/default.nix b/configurations/london/default.nix index b2bf530..4c33897 100644 --- a/configurations/london/default.nix +++ b/configurations/london/default.nix @@ -1,7 +1,6 @@ { pkgs, config, - lib, extraInfo, ... }: @@ -68,27 +67,35 @@ ]; uid = 1000; shell = pkgs.fish; - hmConfig = { - programs.helix.enable = true; - 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; - } - ]; + hmConfig = + { pkgs, ... }: + { + programs.helix.enable = true; - nixpkgs.config.allowUnfree = true; - my.development.embedded-tools.enable = true; - my.games.wine.enable = true; - }; + home.packages = with pkgs; [ + cutter + 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; + }; }; }; }