Fixes to make pbp build again
This commit is contained in:
parent
ddefe962cc
commit
1da0bea837
7 changed files with 10 additions and 9 deletions
|
@ -4,6 +4,6 @@
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
] ++ suites.base;
|
] ++ suites.base;
|
||||||
|
|
||||||
bud.enable = true;
|
bud.enable = false;
|
||||||
bud.localFlakeClone = "/home/ccr/fleet";
|
bud.localFlakeClone = "/home/ccr/fleet";
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ in
|
||||||
nix-index
|
nix-index
|
||||||
nmap
|
nmap
|
||||||
ripgrep
|
ripgrep
|
||||||
skim
|
#skim
|
||||||
tealdeer
|
tealdeer
|
||||||
tmux
|
tmux
|
||||||
usbutils
|
usbutils
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
gphoto2
|
gphoto2
|
||||||
digikam
|
digikam
|
||||||
rawtherapee
|
rawtherapee
|
||||||
freecad
|
|
||||||
openscad
|
|
||||||
deploy-rs.deploy-rs
|
deploy-rs.deploy-rs
|
||||||
] ++
|
] ++
|
||||||
(if !stdenv.hostPlatform.isAarch64 then [ wineWowPackages.full ] else [ ])
|
(if !stdenv.hostPlatform.isAarch64 then [ wineWowPackages.full ] else [ ])
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
openscad
|
||||||
] ++ (if !stdenv.hostPlatform.isAarch64 then [
|
] ++ (if !stdenv.hostPlatform.isAarch64 then [
|
||||||
blender
|
blender
|
||||||
|
freecad
|
||||||
]
|
]
|
||||||
else [ ]);
|
else [ ]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
fd
|
fd
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
graphviz-nox
|
graphviz-nox
|
||||||
haskell-language-server
|
|
||||||
hunspell
|
hunspell
|
||||||
hunspellDicts.en_US
|
hunspellDicts.en_US
|
||||||
hunspellDicts.it_IT
|
hunspellDicts.it_IT
|
||||||
|
@ -59,6 +58,7 @@
|
||||||
)
|
)
|
||||||
] ++ (if pkgs.system == "x86_64-linux" then [
|
] ++ (if pkgs.system == "x86_64-linux" then [
|
||||||
python-language-server
|
python-language-server
|
||||||
|
haskell-language-server
|
||||||
] ++ (with easy-ps; [
|
] ++ (with easy-ps; [
|
||||||
# spago2nix
|
# spago2nix
|
||||||
nodejs
|
nodejs
|
||||||
|
|
|
@ -57,8 +57,8 @@
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
lib.mkOptionDefault {
|
lib.mkOptionDefault {
|
||||||
"${modifier}+x" = "exec ${pkgs.customEmacs}/bin/emacs";
|
"${modifier}+x" = "exec emacs";
|
||||||
"${modifier}+b" = "exec ${pkgs.firefox}/bin/firefox";
|
"${modifier}+b" = "exec firefox";
|
||||||
"${modifier}+s" = "exec ${screenshotScript}";
|
"${modifier}+s" = "exec ${screenshotScript}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -29,8 +29,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
haskell-language-server
|
|
||||||
stylish-haskell
|
stylish-haskell
|
||||||
ghc
|
ghc
|
||||||
];
|
] ++ (if pkgs.system == "x86_64-linux" then [
|
||||||
|
haskell-language-server
|
||||||
|
] else [ ]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue