home-manager/shell: add cosmic-term and change ls colors
This commit is contained in:
parent
553622ac66
commit
a2422d1f4e
5 changed files with 36 additions and 16 deletions
16
modules/home-manager/cosmic-term.nix
Normal file
16
modules/home-manager/cosmic-term.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkEnableOption mkIf;
|
||||
|
||||
cfg = config.custom-hm.cosmic-term;
|
||||
in
|
||||
{
|
||||
options.custom-hm.cosmic-term = {
|
||||
enable = mkEnableOption "cosmic-term";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ pkgs.cosmic-term ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue