Skip to content

Commit

Permalink
treewide: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Aug 11, 2024
1 parent 19759de commit 5f1f7bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 7 additions & 4 deletions nixos/desktop/xserver.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:

{
options.nixos.desktop.xserver.enable = lib.mkEnableOption "xserver config" // {
Expand All @@ -20,9 +25,7 @@
autorandr.enable = true;

# Show sx as an option in display manager
displayManager.sessionPackages = with pkgs; [
sx
];
displayManager.sessionPackages = with pkgs; [ sx ];

# Enable libinput
libinput = {
Expand Down
3 changes: 2 additions & 1 deletion overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ outputs.lib.recursiveMergeAttrs [
sx =
with prev;
sx.overrideAttrs (oldAttrs: {
postInstall = (oldAttrs.postInstall or "")
postInstall =
(oldAttrs.postInstall or "")
+
#bash
''
Expand Down

0 comments on commit 5f1f7bc

Please sign in to comment.