diff --git a/home.nix b/home.nix index 99e6208..7f66c45 100755 --- a/home.nix +++ b/home.nix @@ -73,6 +73,8 @@ }; }; + # services.polybar.enable = true; + # services.xserver.windowManager.i3.configFile = "./local-configs/config"; # Let Home Manager install and manage itself. diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 34d37d7..2f55482 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -79,6 +79,8 @@ environment.systemPackages = with pkgs; [ # System Packages go here pkgs.brave + pkgs.xdotool + pkgs.vscode pkgs.scrot pkgs.imagemagick pkgs.papirus-nord @@ -87,6 +89,7 @@ pkgs.tree pkgs.rofi pkgs.i3blocks + pkgs.polybar pkgs.i3 pkgs.prismlauncher pkgs.alejandra @@ -190,6 +193,10 @@ nix.settings.experimental-features = ["nix-command" "flakes"]; services.printing.enable = true; + services.logind = { + extraConfig = "HandlePowerKey=suspend"; + lidSwitch = "suspend"; + }; services.avahi = { enable = true; nssmdns = true;