mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-22 13:24:40 +01:00
set up and configure mprocs
This commit is contained in:
parent
2c32facb60
commit
65039f4f17
|
@ -7,5 +7,6 @@
|
||||||
./firewall.nix
|
./firewall.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./kmscon.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