remove nixos directory

This commit is contained in:
Noah Masur
2022-05-01 23:39:50 -04:00
parent 6cd892f67a
commit ec0b1c4e04
14 changed files with 42 additions and 1099 deletions

View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, gui, identity, ... }: {
config = lib.mkIf gui.enable {
home-manager.users.${identity.user} = {
home.packages = with pkgs; [ qbittorrent ];
};
};
}