My Nix Configuration
1{ 2 pkgs, 3 ... 4}: 5{ 6 imports = [ 7 ./files/pamKeys.nix 8 ./files/distrobox-config.nix 9 ]; 10 snowfallorg.user = { 11 enable = true; 12 }; 13 home.packages = [ 14 pkgs.mindustry 15 ]; 16 py = { 17 profiles.desktop.enable = true; 18 }; 19 py.services.kanshi.settings = [ 20 { 21 profile = { 22 name = "laptop-only"; 23 outputs = [ 24 { 25 criteria = "eDP-1"; 26 status = "enable"; 27 scale = 1.2; 28 position = "0,0"; 29 adaptiveSync = true; 30 } 31 ]; 32 }; 33 } 34 { 35 profile = { 36 name = "office"; 37 outputs = [ 38 { 39 criteria = "eDP-1"; 40 status = "enable"; 41 scale = 1.2; 42 position = "0,0"; 43 adaptiveSync = true; 44 } 45 { 46 criteria = "Acer Technologies SA241Y 0x1497CF17"; 47 status = "enable"; 48 scale = 1.0; 49 position = "2160,0"; 50 } 51 ]; 52 }; 53 } 54 ]; 55}