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, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
services.autorandr.enable = true;
|
||||||
|
home-manager.users.cyryl = {...}: {
|
||||||
programs.autorandr = {
|
programs.autorandr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
hooks.postswitch = {
|
hooks.postswitch = {
|
||||||
|
@ -50,5 +51,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./autorandr.nix
|
||||||
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gnome3.dconf
|
gnome3.dconf
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./autorandr.nix
|
|
||||||
./i3.nix
|
./i3.nix
|
||||||
./i3-status.nix
|
./i3-status.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
|
|
Loading…
Reference in a new issue