This commit is contained in:
parent
6c1b494e82
commit
fa0bad904c
12 changed files with 6 additions and 26 deletions
|
@ -12,10 +12,6 @@
|
||||||
starship.enable = true;
|
starship.enable = true;
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
coding = {
|
|
||||||
phpactor.enable = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -19,10 +19,6 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
coding = {
|
|
||||||
phpactor.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
browsers = {
|
browsers = {
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
./media/handbrake.nix
|
./media/handbrake.nix
|
||||||
./media/mpv.nix
|
./media/mpv.nix
|
||||||
./node.nix
|
./node.nix
|
||||||
./phpactor
|
|
||||||
./ranger.nix
|
./ranger.nix
|
||||||
./redshift.nix
|
./redshift.nix
|
||||||
./screenkey.nix
|
./screenkey.nix
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ config, lib, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
cfg = config.features.coding.phpactor;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.features.coding.phpactor.enable = mkEnableOption "Enable phpactor";
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
xdg.configFile.phpactor = {
|
|
||||||
source = ./config;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
6
modules2/phpactor/phpactor.nix
Normal file
6
modules2/phpactor/phpactor.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
flake.modules.homeManager.base.xdg.configFile.phpactor = {
|
||||||
|
source = ./config;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue