Make program integrations conditional on shell
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
_: {
|
||||
{shell, ...}: {
|
||||
programs = {
|
||||
nano.enable = true;
|
||||
hyprland = {
|
||||
enable = true;
|
||||
withUWSM = false;
|
||||
};
|
||||
fish.enable = true;
|
||||
fish.enable =
|
||||
if shell == "fish"
|
||||
then true
|
||||
else false;
|
||||
dconf.enable = true;
|
||||
seahorse.enable = true;
|
||||
fuse.userAllowOther = true;
|
||||
|
||||
Reference in New Issue
Block a user