initial commit
This commit is contained in:
commit
813b424831
13 changed files with 171 additions and 0 deletions
16
modules/terminal.nix
Normal file
16
modules/terminal.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{config, pkgs, lib, ...}:
|
||||
|
||||
let
|
||||
cfg = config.modules.terminal;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
modules.terminal.enable = lib.mkEnableOption "Enables alacritty";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
alacritty
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue