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
nixfmt
nixpkgs-fmt
nmap
nvd
par2cmdline
pciutils

View file

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

View file

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