set up and configure mprocs
This commit is contained in:
parent
2c32facb60
commit
65039f4f17
2 changed files with 17 additions and 0 deletions
|
@ -7,5 +7,6 @@
|
|||
./firewall.nix
|
||||
./git.nix
|
||||
./kmscon.nix
|
||||
./mprocs.nix
|
||||
];
|
||||
}
|
||||
|
|
16
modules/mprocs.nix
Normal file
16
modules/mprocs.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{...}: {
|
||||
home-manager.users.jade = {
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home = {
|
||||
packages = [pkgs.mprocs];
|
||||
};
|
||||
xdg.configFile."mprocs/mprocs.yaml" = {
|
||||
text = builtins.toJSON {
|
||||
proc_list_width = 15;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue