Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding fvwm to the list of available window managers. [needs attention] #24435

Closed
noisecrew opened this issue Mar 29, 2017 · 6 comments
Closed

Comments

@noisecrew
Copy link

noisecrew commented Mar 29, 2017

Hello;
trying to add

    xserver.desktopManager.default = "none";
    xserver.desktopManager.fvwm.enable = false;
    xserver.windowManager.default = "fvwm";
    xserver.windowManager.fvwm.enable = true;

causes to return errors about the service doesn't exist. So please add them.
this option is needed to set fvwm for display-managers like lightdm or sddm.
Thanks

@edanaher
Copy link
Contributor

FYI, you can do this yourself (as I have been):

    services.xserver.desktopManager.default = "fvwm";
    services.xserver.desktopManager.session =
      [ { manage = "desktop";
          name = "fvwm";
          start = ''
            ${fvwm}/bin/fvwm &
            waitPID=$!
          '';
        }
      ];

However, now that I'm not just getting started with Nix, I should really commit that... I'll add it as my next nixpkgs TODO.

@noisecrew
Copy link
Author

noisecrew commented Mar 29, 2017

rror: undefined variable ‘fvwm’ at /etc/nixos/services.nix:20:15
(use ‘--show-trace’ to show detailed location information)
building Nix...
error: undefined variable ‘fvwm’ at /etc/nixos/services.nix:20:15
(use ‘--show-trace’ to show detailed location information)
building the system configuration...
error: undefined variable ‘fvwm’ at /etc/nixos/services.nix:20:15
(use ‘--show-trace’ to show detailed location information)

@edanaher
Copy link
Contributor

Ah; I had a bit of other infrastructure that I filtered out. Try using ${pkgs.fvwm} instead?

@noisecrew
Copy link
Author

noisecrew commented Mar 29, 2017

${pkgs.fvwm} didn't help

wouldn't be better to add it to nixos tree. like jwm, bspwm, ... and all other WMs.

@noisecrew
Copy link
Author

cc @ttuegel

@noisecrew noisecrew changed the title fvwm related service files. [needs attention] Adding fvwm to the list of available window managers. [needs attention] Mar 30, 2017
@lheckemann
Copy link
Member

Given that the module has now been added and is available in nixos-unstable, I think this issue can be closed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants