mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 22:30:13 +00:00
initial refactoring
This commit is contained in:
24
platforms/home-manager/modules/nmasur/profiles/developer.nix
Normal file
24
platforms/home-manager/modules/nmasur/profiles/developer.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.nmasur.profiles.developer;
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
options.nmasur.profiles.developer.enable = lib.mkEnableOption "Developer tools";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
pgcli # Postgres client with autocomplete
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user