my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
154B

  1. { pkgs, ... }: {
  2. imports = [
  3. ./wm.nix
  4. ./rofi.nix
  5. ];
  6. home.packages = with pkgs; [
  7. feh
  8. ];
  9. xsession = {
  10. enable = true;
  11. };
  12. }