diff options
| -rw-r--r-- | config/dunst/dunstrc | 2 | ||||
| -rw-r--r-- | flake.nix | 2 | 
2 files changed, 3 insertions, 1 deletions
| diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc index b5b57f0..91f9919 100644 --- a/config/dunst/dunstrc +++ b/config/dunst/dunstrc @@ -42,7 +42,7 @@      mouse_left_click = close_current      mouse_middle_click = do_action, close_current      mouse_right_click = close_all -    origin = bottom-right +    origin = top-right  [experimental]      per_monitor_dpi = false @@ -15,6 +15,7 @@    outputs = { self, nixpkgs, ... }@inputs: {      # nixos-rebuild --flake .#machine      nixosConfigurations = { +        x = nixpkgs.lib.nixosSystem {          system = "x86_64-linux";          specialArgs = { inherit inputs; }; @@ -23,6 +24,7 @@            inputs.home-manager.nixosModules.default          ];        }; +      };    };  } | 
