remove kdeconnect, add nmap

This commit is contained in:
Cyryl Płotnicki 2022-07-20 20:55:49 +01:00
parent 1c691cd333
commit 45845bbb0a
3 changed files with 3 additions and 16 deletions

View file

@ -35,6 +35,7 @@
nix-top nix-top
nixfmt nixfmt
nixpkgs-fmt nixpkgs-fmt
nmap
nvd nvd
par2cmdline par2cmdline
pciutils pciutils

View file

@ -1,12 +1,6 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
imports = [ imports =
./i3.nix [ ./i3.nix ./i3status-rust.nix ./dunst.nix ./rofi.nix ./xidlehook.nix ];
./i3status-rust.nix
./dunst.nix
./rofi.nix
./kdeconnect.nix
./xidlehook.nix
];
home.sessionVariables = { CM_LAUNCHER = "rofi"; }; home.sessionVariables = { CM_LAUNCHER = "rofi"; };

View file

@ -1,8 +0,0 @@
{ config, pkgs, ... }: {
services.kdeconnect = {
enable = true;
indicator = true;
};
home.packages = with pkgs; [ kdeconnect ];
}