aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-10-06 15:22:20 +0300
committerZhongheng Liu <z.liu@outlook.com.gr>2024-10-06 15:22:20 +0300
commit9724c8e4f4885074cc0ce5e81898d5d5dfaa0e83 (patch)
tree376595311ba16fd598dfa0270c6c17027700f0a5
parent9975cd7d64587b349fc4f6825c197da9b74823e4 (diff)
downloadnixos-configuration-9724c8e4f4885074cc0ce5e81898d5d5dfaa0e83.tar.gz
nixos-configuration-9724c8e4f4885074cc0ce5e81898d5d5dfaa0e83.tar.bz2
nixos-configuration-9724c8e4f4885074cc0ce5e81898d5d5dfaa0e83.zip
chore: prune config of unused files
-rw-r--r--home-manager/stvnliu/kanshi.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/home-manager/stvnliu/kanshi.nix b/home-manager/stvnliu/kanshi.nix
deleted file mode 100644
index ca687b2..0000000
--- a/home-manager/stvnliu/kanshi.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- pkgs,
- config,
- ...
-}: {
- services.kanshi = {
- enable = true;
- profiles = {
- undocked = {
- outputs = [
- {
- criteria = "eDP-1";
- scale = 1.0;
- status = "enable";
- }
- ];
- };
- docked_office_cn = {
- outputs = [
- {
- criteria = "AOC 2619 M1194JA002428";
- position = "0,0";
- mode = "1920x1200@59.94Hz";
- }
- {
- criteria = "eDP-1";
- position = "0,0";
- status = "disable";
- }
- ];
- };
- docked_office_gr = {
- outputs = [
- {
- criteria = "HDMI-A-1";
- position = "2560,0";
- mode = "1920x1080@75.00Hz";
- }
- ];
- };
- };
- systemdTarget = "hyprland-session.target";
- };
-}