dotfiles/nixos/.flake/system/desktop.nix.org
2024-09-28 00:01:09 -05:00

2.9 KiB

Desktop System Configuration

Open the desktop configuration.

  { config, lib, pkgs, ... }:

  {

Allow unfree packages on this system.

    nixpkgs.config.allowUnfree = true;

Install necessary packages for the desktop.

    environment.systemPackages = with pkgs; [
      dolphin
      firefox
      git
      greetd.tuigreet
      kitty
      neovim
      wget
    ];

Install Steam.

  programs.steam = {
    enable = true;
    remotePlay.openFirewall = true;
    dedicatedServer.openFirewall = true;
    localNetworkGameTransfers.openFirewall = true;
  };

Use Neovim as my default editor.

      environment.variables.EDITOR = "nvim";

Enable GPG agent globally.

    programs.gnupg.agent = {
      enable = true;
      enableSSHSupport = true;
    };

Install zsh and set up completions.

    programs.zsh.enable = true;
    environment.pathsToLink = [ "/share/zsh" ];

Use the us keyboard layout.

    services.xserver.xkb.layout = "us";

Install Hyprland as a window manager.

    services.xserver.enable = true;
    xdg.portal.enable = true;
    programs.hyprland.enable = true;
    environment.sessionVariables.NIXOS_OZONE_WL = "1";

Enable pam support for Hyprlock.

    security.pam.services.hyprlock = {};

Enable greetd with tuigreet as my login manager.

    services.greetd = {
      enable = true;
      settings = {
        default_session = {
          command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --remember-session --sessions ${pkgs.hyprland}/share/wayland-sessions --cmd \"dbus-run-session Hyprland\"";
  	      user = "greeter";
        };
      };
    };
    systemd.services.greetd.serviceConfig = {
      Type = "idle";
      StandardInput = "tty";
      StanardOutput = "tty";
      StandardError = "journal";
      TTYReset = true;
      TTYVHangup = true;
      TTYVTDisallocate = true;
    };

Enable PipeWire.

    services.pipewire = {
      enable = true;
      pulse.enable = true;
    };

Close the desktop configuration.

  }