Compare commits

...

2 Commits

Author SHA1 Message Date
d4cc44c7df
Add fzf and zoxide to home base profile 2024-02-18 19:49:27 +01:00
4e3d6d222e
Add rustdesk to communication package set
(probably belongs elsewhere but whatever)
2024-02-18 19:09:40 +01:00
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,10 @@
{ pkgs, lib, config, osConfig ? {}, ... }:
{ pkgs, lib, config, osConfig ? {}, inputs, ... }:
let
cfg = config.nixfiles.packageSets.communication;
rustdesk-pkg = if (lib.strings.hasInfix "23.11" lib.version) then
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.rustdesk-flutter
else
pkgs.rustdesk-flutter;
in
{
options.nixfiles.packageSets.communication = {
@ -13,6 +17,7 @@ in
signal-desktop
thunderbird
discord
rustdesk-pkg
] ++ [
irssi
];

View File

@ -17,6 +17,8 @@ in
nixfiles.programs.comma.enable = true;
home.packages = with pkgs; [
btop
fzf
zoxide
];
};
}