hotplug for autorandr
This commit is contained in:
parent
8b2d8949fb
commit
3aa2d0fea6
3 changed files with 44 additions and 40 deletions
|
@ -1,6 +1,7 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
|
||||
services.autorandr.enable = true;
|
||||
home-manager.users.cyryl = {...}: {
|
||||
programs.autorandr = {
|
||||
enable = true;
|
||||
hooks.postswitch = {
|
||||
|
@ -50,5 +51,6 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./autorandr.nix
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome3.dconf
|
||||
];
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./autorandr.nix
|
||||
./i3.nix
|
||||
./i3-status.nix
|
||||
./dunst.nix
|
||||
|
|
Loading…
Reference in a new issue