added inputs for mangowc
This commit is contained in:
parent
8d53402dd9
commit
26a436c2df
6 changed files with 99 additions and 3 deletions
|
|
@ -7,11 +7,13 @@
|
|||
imports = [
|
||||
inputs.plasma-manager.homeModules.plasma-manager #
|
||||
|
||||
#/${root}/homes/modules/shell
|
||||
/${root}/homes/modules/bash
|
||||
/${root}/homes/modules/starship
|
||||
/${root}/homes/modules/vim
|
||||
/${root}/homes/modules/mpv
|
||||
/${root}/homes/modules/zen
|
||||
/${root}/homes/modules/wm
|
||||
];
|
||||
|
||||
home.username = "dea";
|
||||
|
|
|
|||
14
homes/modules/wm/default.nix
Normal file
14
homes/modules/wm/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ lib, ... }:
|
||||
|
||||
{
|
||||
options = {
|
||||
deaFiles.wm = lib.mkOption {
|
||||
type = lib.types.enum [lib.listDir ./ |> builtins.toString];
|
||||
default = null;
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
deaFiles.wm = "mangowc";
|
||||
};
|
||||
}
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
{ inputs, ... }:
|
||||
|
||||
{ }
|
||||
{
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue